12345678910111213141516171819202122232425262728293031323334353637383940 |
- #include "stdafx.h"
- #include "Wizard.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- IMPLEMENT_DYNAMIC(CWizard, CPropertySheet)
- CWizard::CWizard(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
- :CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
- {
- }
- CWizard::CWizard(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
- :CPropertySheet(pszCaption, pParentWnd, iSelectPage)
- {
- }
- CWizard::~CWizard()
- {
- }
- BEGIN_MESSAGE_MAP(CWizard, CPropertySheet)
-
-
-
- END_MESSAGE_MAP()
|