home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / appwiz / customwz / template / newaw.h < prev    next >
C/C++ Source or Header  |  1998-03-05  |  1KB  |  40 lines

  1. #if !defined($$FILE_NAME_SYMBOL$$_INCLUDED_)
  2. #define $$FILE_NAME_SYMBOL$$_INCLUDED_
  3.  
  4. // $$filebase$$aw.h : header file
  5. //
  6.  
  7. class CDialogChooser;
  8.  
  9. // All function calls made by mfcapwz.dll to this custom AppWizard (except for
  10. //  GetCustomAppWizClass-- see $$root$$.cpp) are through this class.  You may
  11. //  choose to override more of the CCustomAppWiz virtual functions here to
  12. //  further specialize the behavior of this custom AppWizard.
  13. class C$$Safe_root$$AppWiz : public CCustomAppWiz
  14. {
  15. public:
  16.     virtual CAppWizStepDlg* Next(CAppWizStepDlg* pDlg);
  17. $$IF(HAS_NEW_STEPS || CUSTOMTYPE_SEQUENCE)
  18.     virtual CAppWizStepDlg* Back(CAppWizStepDlg* pDlg);
  19. $$ENDIF //HAS_NEW_STEPS || CUSTOMTYPE_SEQUENCE
  20.  
  21.     virtual void InitCustomAppWiz();
  22.     virtual void ExitCustomAppWiz();
  23.     virtual void CustomizeProject(IBuildProject* pProject);
  24. $$IF(HAS_NEW_STEPS || CUSTOMTYPE_SEQUENCE)
  25.  
  26. protected:
  27.     CDialogChooser* m_pChooser;
  28. $$ENDIF //HAS_NEW_STEPS || CUSTOMTYPE_SEQUENCE
  29. };
  30.  
  31. // This declares the one instance of the C$$Safe_root$$AppWiz class.  You can access
  32. //  m_Dictionary and any other public members of this class through the
  33. //  global $$Safe_root$$aw.  (Its definition is in $$filebase$$aw.cpp.)
  34. extern C$$Safe_root$$AppWiz $$safe_root$$aw;
  35.  
  36. //{{AFX_INSERT_LOCATION}}
  37. // $$INSERT_LOCATION_COMMENT$$
  38.  
  39. #endif // !defined($$FILE_NAME_SYMBOL$$_INCLUDED_)
  40.