root/trunk/ProjectDetailsPage.cpp

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

Initial ( and last :( ) commit

Line 
1 // ProjectDetailsPage.cpp : implementation file
2 //
3
4 #include "stdafx.h"
5 #include "Elephant.h"
6 #include "ProjectDetailsPage.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 // CProjectDetailsPage
16
17 IMPLEMENT_DYNAMIC(CProjectDetailsPage, CPropertySheet)
18
19 CProjectDetailsPage::CProjectDetailsPage(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
20     :CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
21 {
22 }
23
24 CProjectDetailsPage::CProjectDetailsPage(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
25     :CPropertySheet(pszCaption, pParentWnd, iSelectPage)
26 {
27 }
28
29 CProjectDetailsPage::~CProjectDetailsPage()
30 {
31 }
32
33
34 BEGIN_MESSAGE_MAP(CProjectDetailsPage, CPropertySheet)
35     //{{AFX_MSG_MAP(CProjectDetailsPage)
36         // NOTE - the ClassWizard will add and remove mapping macros here.
37     //}}AFX_MSG_MAP
38 END_MESSAGE_MAP()
39
40 /////////////////////////////////////////////////////////////////////////////
41 // CProjectDetailsPage message handlers
Note: See TracBrowser for help on using the browser.