PropSheet WizardAw.h
上传用户:apjinmao
上传日期:2007-01-02
资源大小:96k
文件大小:1k
源码类别:

PropertySheet

开发平台:

Visual C++

  1. // PropSheet Wizardaw.h : header file
  2. //
  3. class CDialogChooser;
  4. // All function calls made by mfcapwz.dll to this custom AppWizard (except for
  5. //  GetCustomAppWizClass-- see PropSheet Wizard.cpp) are through this class.  You may
  6. //  choose to override more of the CCustomAppWiz virtual functions here to
  7. //  further specialize the behavior of this custom AppWizard.
  8. class CPropSheetWizardAppWiz : public CCustomAppWiz
  9. {
  10. public:
  11. virtual CAppWizStepDlg* Next(CAppWizStepDlg* pDlg);
  12. virtual CAppWizStepDlg* Back(CAppWizStepDlg* pDlg);
  13. virtual void InitCustomAppWiz();
  14. virtual void ExitCustomAppWiz();
  15. virtual void GetPlatforms (CStringList& rPlatforms);
  16. protected:
  17. CDialogChooser* m_pChooser;
  18. private:
  19. void InitMacros ();
  20. void SetRootOptions ();
  21. };
  22. // This declares the one instance of the CPropSheetWizardAppWiz class.  You can access
  23. //  m_Dictionary and any other public members of this class through the
  24. //  global PropSheetWizardaw.  (Its definition is in PropSheet Wizardaw.cpp.)
  25. extern CPropSheetWizardAppWiz PropSheetWizardaw;