Files
wxWidgets/src/common/docmdi.cpp
Dimitri Schoolwerth 8f8d58d193 Use wx-prefixed macros throughout the repository.
Change {DECLARE,IMPLEMENT}_*CLASS and {DECLARE,BEGIN,END}_EVENT_TABLE
occurrences to use the wx-prefixed version of the macros.
2015-04-23 22:00:35 +04:00

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