root/trunk/AddProjectWizardPropPage.cpp

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

Initial ( and last :( ) commit

Line 
1 // AddProjectWizardPropPage.cpp : implementation file
2 //
3
4 #include "stdafx.h"
5 #include "Elephant.h"
6 #include "AddProjectWizardPropPage.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 // CAddProjectWizardPropPage property page
16
17 IMPLEMENT_DYNCREATE(CAddProjectWizardPropPage, CPropertyPage)
18
19 CAddProjectWizardPropPage::CAddProjectWizardPropPage() : CPropertyPage(CAddProjectWizardPropPage::IDD)
20 {
21
22     AddPage(&m_page1);
23     //{{AFX_DATA_INIT(CAddProjectWizardPropPage)
24         // NOTE: the ClassWizard will add member initialization here
25     //}}AFX_DATA_INIT
26 }
27
28 CAddProjectWizardPropPage::~CAddProjectWizardPropPage()
29 {
30 }
31
32 void CAddProjectWizardPropPage::DoDataExchange(CDataExchange* pDX)
33 {
34     CPropertyPage::DoDataExchange(pDX);
35     //{{AFX_DATA_MAP(CAddProjectWizardPropPage)
36         // NOTE: the ClassWizard will add DDX and DDV calls here
37     //}}AFX_DATA_MAP
38 }
39
40
41 BEGIN_MESSAGE_MAP(CAddProjectWizardPropPage, CPropertyPage)
42     //{{AFX_MSG_MAP(CAddProjectWizardPropPage)
43         // NOTE: the ClassWizard will add message map macros here
44     //}}AFX_MSG_MAP
45 END_MESSAGE_MAP()
46
47 /////////////////////////////////////////////////////////////////////////////
48 // CAddProjectWizardPropPage message handlers
Note: See TracBrowser for help on using the browser.