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

Windows编程

开发平台:

Visual C++

  1. // enroldoc.h : interface of the CEnrollDoc class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. class CEnrollDoc : public CDocument
  13. {
  14. protected: // create from serialization only
  15. CEnrollDoc();
  16. DECLARE_DYNCREATE(CEnrollDoc)
  17. // Attributes
  18. public:
  19. CSectionSet m_sectionSet;
  20. CCourseSet  m_courseSet;
  21. // Operations
  22. public:
  23. // Implementation
  24. public:
  25. virtual ~CEnrollDoc();
  26. #ifdef _DEBUG
  27. virtual void AssertValid() const;
  28. virtual void Dump(CDumpContext& dc) const;
  29. #endif
  30. protected:
  31. virtual BOOL OnNewDocument();
  32. // Generated message map functions
  33. protected:
  34. //{{AFX_MSG(CEnrollDoc)
  35. // NOTE - the ClassWizard will add and remove member functions here.
  36. //    DO NOT EDIT what you see in these blocks of generated code !
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. };
  40. /////////////////////////////////////////////////////////////////////////////