Wizard.cpp 879 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // Wizard.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Wizard.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CWizard
  12. IMPLEMENT_DYNAMIC(CWizard, CPropertySheet)
  13. CWizard::CWizard(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
  14. :CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
  15. {
  16. }
  17. CWizard::CWizard(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
  18. :CPropertySheet(pszCaption, pParentWnd, iSelectPage)
  19. {
  20. }
  21. CWizard::~CWizard()
  22. {
  23. }
  24. BEGIN_MESSAGE_MAP(CWizard, CPropertySheet)
  25. //{{AFX_MSG_MAP(CWizard)
  26. // NOTE - the ClassWizard will add and remove mapping macros here.
  27. //}}AFX_MSG_MAP
  28. END_MESSAGE_MAP()
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CWizard message handlers