blob: 8088b863978b972c45d89bf58444a83a257a3b91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#include "StdAfx.h"
#include "T2NewDlgTmp.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
T2NewDlgTmp::T2NewDlgTmp(CWnd *pParent)
: CDialog(IDD, pParent)
{
//{{AFX_DATA_INIT(T2NewDlgTmp)
//}}AFX_DATA_INIT
}
/*virtual*/ void T2NewDlgTmp::DoDataExchange(CDataExchange *pDX) {
CWnd::DoDataExchange(pDX);
//{{AFX_DATA_MAP(T2NewDlgTmp)
DDX_Control(pDX, IDOK, mOKButton);
DDX_Control(pDX, IDCANCEL, mCancelButton);
DDX_Control(pDX, IDC_NEW_DLG_WORLDS, mStatic);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(T2NewDlgTmp, CDialog)
//{{AFX_MSG_MAP(T2NewDlgTmp)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
|