home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / database / dynabind / 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. // 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.  
  13. class CEnrollDoc : public CDocument
  14. {
  15. protected: // create from serialization only
  16.     CEnrollDoc();
  17.     DECLARE_DYNCREATE(CEnrollDoc)
  18.  
  19. // Attributes
  20. public:
  21.     CSectionSet m_sectionSet;
  22.     CCourseSet  m_courseSet;
  23.  
  24. // Operations
  25. public:
  26.  
  27. // Implementation
  28. public:
  29.     virtual ~CEnrollDoc();
  30. #ifdef _DEBUG
  31.     virtual void AssertValid() const;
  32.     virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34.  
  35. protected:
  36.     virtual BOOL OnNewDocument();
  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.