]> icculus.org git repositories - taylor/freespace2.git/blob - src/fred2/dialog1.cpp
Initial revision
[taylor/freespace2.git] / src / fred2 / dialog1.cpp
1 /*
2  * $Logfile: /Freespace2/code/FRED2/dialog1.cpp $
3  * $Revision$
4  * $Date$
5  * $Author$
6  *
7  * key usage summary screen (actually a dialog box, but it's not very interactive)
8  *
9  * $Log$
10  * Revision 1.1  2002/05/03 03:28:08  root
11  * Initial revision
12  *
13  * 
14  * 2     10/07/98 6:28p Dave
15  * Initial checkin. Renamed all relevant stuff to be Fred2 instead of
16  * Fred. Globalized mission and campaign file extensions. Removed Silent
17  * Threat specific code.
18  * 
19  * 1     10/07/98 3:01p Dave
20  * 
21  * 1     10/07/98 3:00p Dave
22  * 
23  * 2     2/17/97 5:28p Hoffoss
24  * Checked RCS headers, added them were missing, changing description to
25  * something better, etc where needed.
26  *
27  * $NoKeywords: $
28  */
29
30 #include "stdafx.h"
31 #include "fred.h"
32 #include "dialog1.h"
33
34 #ifdef _DEBUG
35 #define new DEBUG_NEW
36 #undef THIS_FILE
37 static char THIS_FILE[] = __FILE__;
38 #endif
39
40 /////////////////////////////////////////////////////////////////////////////
41 // dialog1 dialog
42
43 dialog1::dialog1(CWnd* pParent /*=NULL*/)
44         : CDialog(dialog1::IDD, pParent)
45 {
46         //{{AFX_DATA_INIT(dialog1)
47                 // NOTE: the ClassWizard will add member initialization here
48         //}}AFX_DATA_INIT
49 }
50
51 void dialog1::DoDataExchange(CDataExchange* pDX)
52 {
53         CDialog::DoDataExchange(pDX);
54         //{{AFX_DATA_MAP(dialog1)
55                 // NOTE: the ClassWizard will add DDX and DDV calls here
56         //}}AFX_DATA_MAP
57 }
58
59 BEGIN_MESSAGE_MAP(dialog1, CDialog)
60         //{{AFX_MSG_MAP(dialog1)
61                 // NOTE: the ClassWizard will add message map macros here
62         //}}AFX_MSG_MAP
63 END_MESSAGE_MAP()
64
65 /////////////////////////////////////////////////////////////////////////////
66 // dialog1 message handlers