reference/ocr-new/LineMarker.h
author viric@llimona
Thu, 18 May 2006 23:12:51 +0200
changeset 0 6b8091ca909a
permissions -rw-r--r--
Init from working directory of svn repository.

#ifndef _LINEMARKER_H
#define _LINEMARKER_H
/**  LineMarker.h  
     There is a LineMarker array member of Page, which records the
      starting and ending row of each line of text.
**/

class LineMarker {
// Line Marker marks the starting and ending row of  a line of text
// in a Page

 public:
  friend class Page;
   int fstartrow;
   int fendrow;
};

#endif