/* ** AreaEditor - a program for editing SMAUG and ROM area files. ** Author: Nick Gammon ** http://www.gammon.com.au/ ** See Copyright Notice at the end of AreaEditor.h */ // BlankView.cpp : implementation file // #include "stdafx.h" #include "AreaEditor.h" #include "BlankView.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CBlankView IMPLEMENT_DYNCREATE(CBlankView, CFormView) CBlankView::CBlankView() : CFormView(CBlankView::IDD) { //{{AFX_DATA_INIT(CBlankView) // NOTE: the ClassWizard will add member initialization here //}}AFX_DATA_INIT } CBlankView::~CBlankView() { } void CBlankView::DoDataExchange(CDataExchange* pDX) { CFormView::DoDataExchange(pDX); //{{AFX_DATA_MAP(CBlankView) // NOTE: the ClassWizard will add DDX and DDV calls here //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CBlankView, CFormView) //{{AFX_MSG_MAP(CBlankView) // NOTE - the ClassWizard will add and remove mapping macros here. //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CBlankView diagnostics #ifdef _DEBUG void CBlankView::AssertValid() const { CFormView::AssertValid(); } void CBlankView::Dump(CDumpContext& dc) const { CFormView::Dump(dc); } #endif //_DEBUG ///////////////////////////////////////////////////////////////////////////// // CBlankView message handlers