Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

93 lines
2.3 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1996 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // BasePPag.h
  7. //
  8. // Abstract:
  9. // Definition of the CBasePropertyPage class.
  10. //
  11. // Implementation File:
  12. // BasePPag.cpp
  13. //
  14. // Author:
  15. // David Potter (davidp) August 31, 1996
  16. //
  17. // Revision History:
  18. //
  19. // Notes:
  20. //
  21. /////////////////////////////////////////////////////////////////////////////
  22. #ifndef _BASEPPAG_H_
  23. #define _BASEPPAG_H_
  24. /////////////////////////////////////////////////////////////////////////////
  25. // Include Files
  26. /////////////////////////////////////////////////////////////////////////////
  27. #ifndef _BASEPAGE_H_
  28. #include "BasePage.h" // for CBasePage
  29. #endif
  30. #ifndef _BASEPSHT_H_
  31. #include "BasePsht.h" // for CBasePropertySheet
  32. #endif
  33. /////////////////////////////////////////////////////////////////////////////
  34. // Forward Class Declarations
  35. /////////////////////////////////////////////////////////////////////////////
  36. class CBasePropertyPage;
  37. /////////////////////////////////////////////////////////////////////////////
  38. // External Class Declarations
  39. /////////////////////////////////////////////////////////////////////////////
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CBasePropertyPage dialog
  42. /////////////////////////////////////////////////////////////////////////////
  43. class CBasePropertyPage : public CBasePage
  44. {
  45. DECLARE_DYNCREATE(CBasePropertyPage)
  46. // Construction
  47. public:
  48. CBasePropertyPage(void);
  49. CBasePropertyPage(
  50. IN UINT idd,
  51. IN const DWORD * pdwHelpMap,
  52. IN UINT nIDCaption = 0
  53. );
  54. // Dialog Data
  55. //{{AFX_DATA(CBasePropertyPage)
  56. enum { IDD = 0 };
  57. //}}AFX_DATA
  58. // Attributes
  59. protected:
  60. CBasePropertySheet * Ppsht(void) const { return (CBasePropertySheet *) Psht(); }
  61. CClusterItem * Pci(void) const { ASSERT_VALID(m_psht); return Ppsht()->Pci(); }
  62. // Operations
  63. // Overrides
  64. // ClassWizard generate virtual function overrides
  65. //{{AFX_VIRTUAL(CBasePropertyPage)
  66. //}}AFX_VIRTUAL
  67. // Implementation
  68. protected:
  69. // Generated message map functions
  70. //{{AFX_MSG(CBasePropertyPage)
  71. //}}AFX_MSG
  72. DECLARE_MESSAGE_MAP()
  73. }; //*** class CBasePropertyPage
  74. /////////////////////////////////////////////////////////////////////////////
  75. #endif // _BASEPPAG_H_