12345678910111213141516171819202122232425262728293031323334353637383940 |
- // Wizard.cpp : implementation file
- //
- #include "stdafx.h"
- #include "Wizard.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CWizard
- 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)
- //{{AFX_MSG_MAP(CWizard)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CWizard message handlers
|