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

Windows编程

开发平台:

Visual C++

  1. // denrldoc.h : interface of the CDaoEnrolDoc 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. #define HINT_ADD_COURSE 1
  13. #define HINT_DELETE_COURSE 2
  14. class CUpdateHint : public CObject
  15. {
  16. DECLARE_DYNAMIC(CUpdateHint);
  17. CUpdateHint();
  18. CString m_strCourse;
  19. };
  20. class CDaoEnrolDoc : public CDocument
  21. {
  22. protected: // create from serialization only
  23. CDaoEnrolDoc();
  24. DECLARE_DYNCREATE(CDaoEnrolDoc)
  25. // Attributes
  26. protected:
  27. CDaoDatabase m_database;
  28. public:
  29. CsectionSet m_sectionSet;
  30. CCourseSet m_courseSet;
  31. CCourseSet m_courseSetForForm; // for CCourseForm
  32. CDaoDatabase* GetDatabase(){
  33. return &m_database;
  34. }
  35. // Operations
  36. public:
  37. // Overrides
  38. // ClassWizard generated virtual function overrides
  39. //{{AFX_VIRTUAL(CDaoEnrolDoc)
  40. public:
  41. virtual BOOL OnNewDocument();
  42. //}}AFX_VIRTUAL
  43. // Implementation
  44. public:
  45. virtual ~CDaoEnrolDoc();
  46. #ifdef _DEBUG
  47. virtual void AssertValid() const;
  48. virtual void Dump(CDumpContext& dc) const;
  49. #endif
  50. protected:
  51. // Generated message map functions
  52. protected:
  53. //{{AFX_MSG(CDaoEnrolDoc)
  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. /////////////////////////////////////////////////////////////////////////////