Wizard1.cpp
上传用户:xsxdsb
上传日期:2009-12-14
资源大小:672k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

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