root/trunk/AddProjectWizardPropSheet.cpp

Revision 5, 1.2 kB (checked in by qbert, 6 years ago)

Initial ( and last :( ) commit

Line 
1 // AddProjectWizardPropSheet.cpp : implementation file
2 //
3
4 #include "stdafx.h"
5 #include "Elephant.h"
6 #include "AddProjectWizardPropSheet.h"
7
8 #ifdef _DEBUG
9 #define new DEBUG_NEW
10 #undef THIS_FILE
11 static char THIS_FILE[] = __FILE__;
12 #endif
13
14 /////////////////////////////////////////////////////////////////////////////
15 // CAddProjectWizardPropSheet
16
17 IMPLEMENT_DYNAMIC(CAddProjectWizardPropSheet, CPropertySheet)
18
19 CAddProjectWizardPropSheet::CAddProjectWizardPropSheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
20     :CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
21 {
22    
23 }
24
25 CAddProjectWizardPropSheet::CAddProjectWizardPropSheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
26     :CPropertySheet(pszCaption, pParentWnd, iSelectPage)
27 {
28     AddPage(&m_page1);
29 }
30
31 CAddProjectWizardPropSheet::~CAddProjectWizardPropSheet()
32 {
33 }
34
35
36 BEGIN_MESSAGE_MAP(CAddProjectWizardPropSheet, CPropertySheet)
37     //{{AFX_MSG_MAP(CAddProjectWizardPropSheet)
38         // NOTE - the ClassWizard will add and remove mapping macros here.
39     //}}AFX_MSG_MAP
40 END_MESSAGE_MAP()
41
42 /////////////////////////////////////////////////////////////////////////////
43 // CAddProjectWizardPropSheet message handlers
Note: See TracBrowser for help on using the browser.