00001
00002
00003 #include "stdafx.h"
00004 #include "GUIEditor.h"
00005
00006 #include "ChildFrm.h"
00007
00008 #ifdef _DEBUG
00009 #define new DEBUG_NEW
00010 #endif
00011
00012
00013
00014
00015 IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWnd)
00016
00017 BEGIN_MESSAGE_MAP(CChildFrame, CMDIChildWnd)
00018 END_MESSAGE_MAP()
00019
00020
00021
00022
00023 CChildFrame::CChildFrame()
00024 {
00025
00026 }
00027
00028 CChildFrame::~CChildFrame()
00029 {
00030 }
00031
00032
00033 BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
00034 {
00035
00036 if( !CMDIChildWnd::PreCreateWindow(cs) )
00037 return FALSE;
00038
00039 return TRUE;
00040 }
00041
00042
00043
00044
00045 #ifdef _DEBUG
00046 void CChildFrame::AssertValid() const
00047 {
00048 CMDIChildWnd::AssertValid();
00049 }
00050
00051 void CChildFrame::Dump(CDumpContext& dc) const
00052 {
00053 CMDIChildWnd::Dump(dc);
00054 }
00055
00056 #endif //_DEBUG
00057
00058
00059