ENROLDOC.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // EnrolDoc.h : interface of the CEnrollDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. class CEnrollDoc : public CDocument
  5. {
  6. protected: // create from serialization only
  7. CEnrollDoc();
  8. DECLARE_DYNCREATE(CEnrollDoc)
  9. // Attributes
  10. public:
  11. CSectionSet m_sectionSet;
  12. CCourseSet  m_courseSet;
  13. // Operations
  14. public:
  15. // Overrides
  16. // ClassWizard generated virtual function overrides
  17. //{{AFX_VIRTUAL(CEnrollDoc)
  18. public:
  19. virtual BOOL OnNewDocument();
  20. //}}AFX_VIRTUAL
  21. // Implementation
  22. public:
  23. virtual ~CEnrollDoc();
  24. #ifdef _DEBUG
  25. virtual void AssertValid() const;
  26. virtual void Dump(CDumpContext& dc) const;
  27. #endif
  28. protected:
  29. // Generated message map functions
  30. protected:
  31. //{{AFX_MSG(CEnrollDoc)
  32. // NOTE - the ClassWizard will add and remove member functions here.
  33. //    DO NOT EDIT what you see in these blocks of generated code !
  34. //}}AFX_MSG
  35. DECLARE_MESSAGE_MAP()
  36. };
  37. /////////////////////////////////////////////////////////////////////////////