Wizard1.cpp
上传用户:xsxdsb
上传日期:2009-12-14
资源大小:672k
文件大小:1k
- // Wizard1.cpp : implementation file
- //
- #include "stdafx.h"
- #include "Wizard.h"
- #include "Wizard1.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)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CWizard message handlers