home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / database / bindenrl / coursdlg.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  1KB  |  57 lines

  1. // CoursDlg.h : header file
  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. #include "resource.h"
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CCoursePage dialog
  16.  
  17. #ifndef INC_COURPAGE_H
  18. #define INC_COURPAGE_H
  19. #include "rdc.h"
  20.  
  21. class CCoursePage : public CPropertyPage
  22. {
  23. //  DECLARE_DYNCREATE(CCoursePage)
  24.  
  25. // Construction
  26. public:
  27.     CCoursePage();
  28.     ~CCoursePage();
  29.     CRdc* m_pCourseRDC;
  30.     OnCourseChanged();
  31. // Dialog Data
  32.     //{{AFX_DATA(CCoursePage)
  33.     enum { IDD = IDD_COURSE };
  34.     //}}AFX_DATA
  35.  
  36.  
  37. // Overrides
  38.     // ClassWizard generate virtual function overrides
  39.     //{{AFX_VIRTUAL(CCoursePage)
  40.     protected:
  41.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  42.     virtual BOOL OnInitDialog();
  43.     //}}AFX_VIRTUAL
  44.  
  45. // Implementation
  46. protected:
  47.     BOOL m_initiated;
  48.  
  49.     // Generated message map functions
  50.     //{{AFX_MSG(CCoursePage)
  51.     //}}AFX_MSG
  52.     DECLARE_MESSAGE_MAP()
  53.  
  54. };
  55.  
  56. #endif
  57.