forked from paulhoad/gp2trackeditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMyMdiChildWnd.cpp
More file actions
executable file
·37 lines (27 loc) · 946 Bytes
/
Copy pathMyMdiChildWnd.cpp
File metadata and controls
executable file
·37 lines (27 loc) · 946 Bytes
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
30
31
32
33
34
35
36
37
// MyMdiChildWnd.cpp : implementation file
//
#include "stdafx.h"
#include "trackeditor.h"
#include "MyMdiChildWnd.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMyMdiChildWnd
IMPLEMENT_DYNCREATE(CMyMdiChildWnd, CMDIChildWnd)
CMyMdiChildWnd::CMyMdiChildWnd() {}
CMyMdiChildWnd::~CMyMdiChildWnd() {}
BEGIN_MESSAGE_MAP(CMyMdiChildWnd, CMDIChildWnd)
//{{AFX_MSG_MAP(CMyMdiChildWnd)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CMyMdiChildWnd message handlers
BOOL CMyMdiChildWnd::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Add your specialized code here and/or call the base class
return CMDIChildWnd::PreCreateWindow(cs);
}