reference/ocr-simple/LineMarker.h
changeset 0 6b8091ca909a
equal deleted inserted replaced
-1:000000000000 0:6b8091ca909a
       
     1 #ifndef _LINEMARKER_H
       
     2 #define _LINEMARKER_H
       
     3 /**  LineMarker.h  
       
     4      There is a LineMarker array member of Page, which records the
       
     5       starting and ending row of each line of text.
       
     6 **/
       
     7 
       
     8 class LineMarker {
       
     9 // Line Marker marks the starting and ending row of  a line of text
       
    10 // in a Page
       
    11 
       
    12  public:
       
    13   friend class Page;
       
    14    int fstartrow;
       
    15    int fendrow;
       
    16 };
       
    17 
       
    18 #endif
       
    19