#ifndef __BA1201_H #define __BA1201_H #ifndef __SHEET_H #include #endif #ifndef __FILES_H #include #endif #ifndef __MASK_H #include #endif #include #include /////////////////////////////////////////////////////////// // TRec_sheet /////////////////////////////////////////////////////////// class TRec_sheet : public TSheet { TTrec *_rec; TDir *_dir; RecDes _s_rec; int _items; bool _comfile; protected: void page_build(long first, byte rows); public: TRec_sheet(int logicnum); ~TRec_sheet(); TDir* dir() const { return _dir; } TTrec* rec() const { return _rec; } long items() const { return _items; } }; #endif