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

Windows编程

开发平台:

Visual C++

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