home *** CD-ROM | disk | FTP | other *** search
/ Using Visual C++ 4 (Special Edition) / Using_Visual_C_4_Special_Edition_QUE_1996.iso / ch05 / filevdoc.h < prev    next >
C/C++ Source or Header  |  1995-09-30  |  1KB  |  51 lines

  1. // FileVDoc.h : interface of the CFileViewDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CFileViewDoc : public CDocument
  6. {
  7. protected: // create from serialization only
  8.     CFileViewDoc();
  9.     DECLARE_DYNCREATE(CFileViewDoc)
  10.  
  11.     CPtrArray *lines;
  12.     int maxLineLength;
  13.  
  14. // Attributes
  15. public:
  16.  
  17. // Operations
  18. public:
  19.  
  20. // Overrides
  21.     // ClassWizard generated virtual function overrides
  22.     //{{AFX_VIRTUAL(CFileViewDoc)
  23.     public:
  24.     virtual BOOL OnNewDocument();
  25.     virtual void Serialize(CArchive& ar);
  26.     //}}AFX_VIRTUAL
  27.  
  28. // Implementation
  29. public:
  30.     virtual ~CFileViewDoc();
  31. #ifdef _DEBUG
  32.     virtual void AssertValid() const;
  33.     virtual void Dump(CDumpContext& dc) const;
  34. #endif
  35.  
  36. protected:
  37.  
  38. // Generated message map functions
  39. protected:
  40.     //{{AFX_MSG(CFileViewDoc)
  41.         // NOTE - the ClassWizard will add and remove member functions here.
  42.         //    DO NOT EDIT what you see in these blocks of generated code !
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. public:
  46.     CPtrArray *GetLines()    { return lines; }
  47.     int GetMaxLineLength()    { return maxLineLength; }
  48. };
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51.