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

  1. // hierwaw.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and Microsoft
  9. // QuickHelp and/or WinHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. class CDialogChooser;
  14.  
  15. // All function calls made by mfcapwz.dll to this custom AppWizard (except for
  16. //  GetCustomAppWizClass-- see hierwiz.cpp) are through this class.  You may
  17. //  choose to override more of the CCustomAppWiz virtual functions here to
  18. //  further specialize the behavior of this custom AppWizard.
  19. class CHierwizAppWiz : public CCustomAppWiz
  20. {
  21. public:
  22.     virtual CAppWizStepDlg* Next(CAppWizStepDlg* pDlg);
  23.     virtual CAppWizStepDlg* Back(CAppWizStepDlg* pDlg);
  24.  
  25.     virtual void InitCustomAppWiz();
  26.     virtual void ExitCustomAppWiz();
  27.  
  28. protected:
  29.     CDialogChooser * m_pChooser ;
  30. };
  31.  
  32. // This declares the one instance of the CHierwizAppWiz class.  You can access
  33. //  m_Dictionary and any other public members of this class through the
  34. //  global Hierwizaw.  (Its definition is in hierwaw.cpp.)
  35. extern CHierwizAppWiz hierwizaw;
  36.