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 / step4 / enroldoc.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  1KB  |  61 lines

  1. // EnrolDoc.h : interface of the CEnrollDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. #define HINT_ADD_COURSE 1
  6. #define HINT_DELETE_COURSE 2
  7.  
  8. class CUpdateHint : public CObject
  9. {
  10.     DECLARE_DYNAMIC(CUpdateHint);
  11.     CUpdateHint();
  12.     CString m_strCourse;
  13. };
  14.  
  15. class CEnrollDoc : public CDocument
  16. {
  17. protected: // create from serialization only
  18.     CEnrollDoc();
  19.     DECLARE_DYNCREATE(CEnrollDoc)
  20.  
  21. // Attributes
  22. protected:
  23.     CDatabase m_database;
  24. public:
  25.     CSectionSet m_sectionSet;
  26.     CCourseSet m_courseSet; // for combobox in CSectionForm
  27.     CCourseSet m_courseSetForForm; // for CCourseForm
  28.  
  29. // Operations
  30. public:
  31.  
  32. // Overrides
  33.     // ClassWizard generated virtual function overrides
  34.     //{{AFX_VIRTUAL(CEnrollDoc)
  35.     public:
  36.     virtual BOOL OnNewDocument();
  37.     //}}AFX_VIRTUAL
  38.  
  39.     CDatabase* GetDatabase();
  40.  
  41. // Implementation
  42. public:
  43.     virtual ~CEnrollDoc();
  44. #ifdef _DEBUG
  45.     virtual void AssertValid() const;
  46.     virtual void Dump(CDumpContext& dc) const;
  47. #endif
  48.  
  49. protected:
  50.  
  51. // Generated message map functions
  52. protected:
  53.     //{{AFX_MSG(CEnrollDoc)
  54.         // NOTE - the ClassWizard will add and remove member functions here.
  55.         //    DO NOT EDIT what you see in these blocks of generated code !
  56.     //}}AFX_MSG
  57.     DECLARE_MESSAGE_MAP()
  58. };
  59.  
  60. /////////////////////////////////////////////////////////////////////////////
  61.