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
25 lines
554 B
#pragma once
|
|
|
|
class CExportSummary : public CPropertyPageImpl<CExportSummary>
|
|
{
|
|
typedef CPropertyPageImpl<CExportSummary> BaseClass;
|
|
|
|
|
|
public:
|
|
enum { IDD = IDD_WPEXP_SUMMARY };
|
|
|
|
BEGIN_MSG_MAP(CExportSummary)
|
|
CHAIN_MSG_MAP(BaseClass)
|
|
END_MSG_MAP()
|
|
|
|
CExportSummary ( CWizardSheet* pTheSheet );
|
|
|
|
int OnWizardBack ( void );
|
|
BOOL OnSetActive ( void );
|
|
|
|
|
|
private:
|
|
CWizardSheet* m_pTheSheet;
|
|
CString m_strTitle;
|
|
CString m_strSubTitle;
|
|
};
|