home *** CD-ROM | disk | FTP | other *** search
/ Prima Shareware 3 / DuCom_Prima-Shareware-3_cd1.bin / PROGRAMO / C / CKTBL / SAMPLES / MFCDEMO / MFCDEDOC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-07  |  1006 b   |  41 lines

  1. // mfcdedoc.h : interface of the CMfcdemoDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CMfcdemoDoc : public CDocument
  6. {
  7. protected: // create from serialization only
  8.     CMfcdemoDoc();
  9.     DECLARE_DYNCREATE(CMfcdemoDoc)
  10.  
  11. // Attributes
  12. public:
  13.     int            rows,columns;
  14.     CObArray    rowArray;
  15. // Operations
  16. public:              
  17.  
  18. // Implementation
  19. public:
  20.     virtual ~CMfcdemoDoc();
  21.     virtual void Serialize(CArchive& ar);   // overridden for document i/o
  22. #ifdef _DEBUG
  23.     virtual void AssertValid() const;
  24.     virtual void Dump(CDumpContext& dc) const; 
  25.     
  26. #endif
  27.  
  28. protected:
  29.     virtual BOOL OnNewDocument();
  30.  
  31. // Generated message map functions
  32. protected:
  33.     //{{AFX_MSG(CMfcdemoDoc)
  34.         // NOTE - the ClassWizard will add and remove member functions here.
  35.         //    DO NOT EDIT what you see in these blocks of generated code !
  36.     //}}AFX_MSG
  37.     DECLARE_MESSAGE_MAP()
  38. };
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41.