Leaked source code of windows server 2003
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.

25 lines
554 B

  1. #pragma once
  2. class CExportSummary : public CPropertyPageImpl<CExportSummary>
  3. {
  4. typedef CPropertyPageImpl<CExportSummary> BaseClass;
  5. public:
  6. enum { IDD = IDD_WPEXP_SUMMARY };
  7. BEGIN_MSG_MAP(CExportSummary)
  8. CHAIN_MSG_MAP(BaseClass)
  9. END_MSG_MAP()
  10. CExportSummary ( CWizardSheet* pTheSheet );
  11. int OnWizardBack ( void );
  12. BOOL OnSetActive ( void );
  13. private:
  14. CWizardSheet* m_pTheSheet;
  15. CString m_strTitle;
  16. CString m_strSubTitle;
  17. };