home *** CD-ROM | disk | FTP | other *** search
- /*
- HEADER.HPP
- Copyright (c) Les Hancock 1990
- */
-
- #ifndef HEADER_HPP
- #define HEADER_HPP
-
- class header
- {
- char *bufptr;
- unsigned int cols:8; // max cols < 255
- unsigned int page_no; // who knows?
- public:
- header(const char *file_name, unsigned int columns);
- ~header() { delete bufptr; }
- friend ostream& operator<<(ostream&, header&);
- void new_page(void);
- };
-
- #endif
-
-