1 /*
2  * Copyright (C) Volition, Inc. 1999.  All rights reserved.
3  *
4  * All source code herein is the property of Volition, Inc. You may not sell
5  * or otherwise commercially exploit the source or things you created based on the
6  * source.
7  *
8 */
9 
10 
11 
12 #include "stdafx.h"
13 #include "FRED.h"
14 #include "dialog1.h"
15 
16 #ifdef _DEBUG
17 #undef THIS_FILE
18 static char THIS_FILE[] = __FILE__;
19 #endif
20 
21 /////////////////////////////////////////////////////////////////////////////
22 // dialog1 dialog
23 
dialog1(CWnd * pParent)24 dialog1::dialog1(CWnd* pParent /*=NULL*/)
25 	: CDialog(dialog1::IDD, pParent)
26 {
27 	//{{AFX_DATA_INIT(dialog1)
28 		// NOTE: the ClassWizard will add member initialization here
29 	//}}AFX_DATA_INIT
30 }
31 
DoDataExchange(CDataExchange * pDX)32 void dialog1::DoDataExchange(CDataExchange* pDX)
33 {
34 	CDialog::DoDataExchange(pDX);
35 	//{{AFX_DATA_MAP(dialog1)
36 		// NOTE: the ClassWizard will add DDX and DDV calls here
37 	//}}AFX_DATA_MAP
38 }
39 
40 BEGIN_MESSAGE_MAP(dialog1, CDialog)
41 	//{{AFX_MSG_MAP(dialog1)
42 		// NOTE: the ClassWizard will add message map macros here
43 	//}}AFX_MSG_MAP
44 END_MESSAGE_MAP()
45 
46 /////////////////////////////////////////////////////////////////////////////
47 // dialog1 message handlers
48