Change {DECLARE,IMPLEMENT}_*CLASS and {DECLARE,BEGIN,END}_EVENT_TABLE
occurrences to use the wx-prefixed version of the macros.
27 lines
779 B
C++
27 lines
779 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/common/docmdi.cpp
|
|
// Purpose: Frame classes for MDI document/view applications
|
|
// Author: Julian Smart, Vadim Zeitlin
|
|
// Created: 01/02/97
|
|
// Copyright: (c) 1997 Julian Smart
|
|
// (c) 2010 Vadim Zeitlin
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#if wxUSE_MDI_ARCHITECTURE
|
|
|
|
#include "wx/docmdi.h"
|
|
|
|
wxIMPLEMENT_CLASS(wxDocMDIParentFrame, wxMDIParentFrame);
|
|
wxIMPLEMENT_CLASS(wxDocMDIChildFrame, wxMDIChildFrame);
|
|
|
|
#endif // wxUSE_DOC_VIEW_ARCHITECTURE
|
|
|