#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