Remove all lines containing cvs/svn "$Id$" keyword.
[wxWidgets.git] / src / common / docmdi.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/docmdi.cpp
3 // Purpose: Frame classes for MDI document/view applications
4 // Author: Julian Smart, Vadim Zeitlin
5 // Created: 01/02/97
6 // Copyright: (c) 1997 Julian Smart
7 // (c) 2010 Vadim Zeitlin
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
13
14 #ifdef __BORLANDC__
15 #pragma hdrstop
16 #endif
17
18 #if wxUSE_MDI_ARCHITECTURE
19
20 #include "wx/docmdi.h"
21
22 IMPLEMENT_CLASS(wxDocMDIParentFrame, wxMDIParentFrame)
23 IMPLEMENT_CLASS(wxDocMDIChildFrame, wxMDIChildFrame)
24
25 #endif // wxUSE_DOC_VIEW_ARCHITECTURE
26