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.

41 lines
885 B

  1. // WizSheet.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CWizardSheet
  5. class CWizardSheet : public CPropertySheet
  6. {
  7. DECLARE_DYNAMIC(CWizardSheet)
  8. // Construction
  9. public:
  10. CWizardSheet();
  11. CWizardSheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  12. CWizardSheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  13. // Attributes
  14. public:
  15. // Operations
  16. public:
  17. // Overrides
  18. // ClassWizard generated virtual function overrides
  19. //{{AFX_VIRTUAL(CWizardSheet)
  20. //}}AFX_VIRTUAL
  21. // Implementation
  22. public:
  23. virtual ~CWizardSheet();
  24. // Generated message map functions
  25. protected:
  26. //{{AFX_MSG(CWizardSheet)
  27. // NOTE - the ClassWizard will add and remove member functions here.
  28. //}}AFX_MSG
  29. DECLARE_MESSAGE_MAP()
  30. };
  31. /////////////////////////////////////////////////////////////////////////////