root/trunk/ProjectDetailsPropPage.cpp

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

Initial ( and last :( ) commit

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