home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / tutorial / enroll / step3 / enroldoc.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  1KB  |  48 lines

  1. // EnrolDoc.h : interface of the CEnrollDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5.  
  6. class CEnrollDoc : public CDocument
  7. {
  8. protected: // create from serialization only
  9.     CEnrollDoc();
  10.     DECLARE_DYNCREATE(CEnrollDoc)
  11.  
  12. // Attributes
  13. public:
  14.     CSectionSet m_sectionSet;
  15.     CCourseSet  m_courseSet;
  16.  
  17. // Operations
  18. public:
  19.  
  20. // Overrides
  21.     // ClassWizard generated virtual function overrides
  22.     //{{AFX_VIRTUAL(CEnrollDoc)
  23.     public:
  24.     virtual BOOL OnNewDocument();
  25.     //}}AFX_VIRTUAL
  26.  
  27.  
  28. // Implementation
  29. public:
  30.     virtual ~CEnrollDoc();
  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(CEnrollDoc)
  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. };
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48.