reference/ocr-simple/LineMarker.h
changeset 0 6b8091ca909a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/reference/ocr-simple/LineMarker.h	Thu May 18 23:12:51 2006 +0200
@@ -0,0 +1,19 @@
+#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
+