]>
Commit | Line | Data |
---|---|---|
2108f33a | 1 | ///////////////////////////////////////////////////////////////////////////// |
c48bdb0c | 2 | // Name: src/common/docmdi.cpp |
2108f33a | 3 | // Purpose: Frame classes for MDI document/view applications |
c48bdb0c | 4 | // Author: Julian Smart, Vadim Zeitlin |
2108f33a JS |
5 | // Created: 01/02/97 |
6 | // RCS-ID: $Id$ | |
c48bdb0c VZ |
7 | // Copyright: (c) 1997 Julian Smart |
8 | // (c) 2010 Vadim Zeitlin | |
65571936 | 9 | // Licence: wxWindows licence |
2108f33a JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
2108f33a JS |
12 | // For compilers that support precompilation, includes "wx.h". |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #ifdef __BORLANDC__ | |
2df7be7f | 16 | #pragma hdrstop |
2108f33a JS |
17 | #endif |
18 | ||
e30285ab | 19 | #if wxUSE_MDI_ARCHITECTURE |
2108f33a | 20 | |
2108f33a JS |
21 | #include "wx/docmdi.h" |
22 | ||
2108f33a | 23 | IMPLEMENT_CLASS(wxDocMDIParentFrame, wxMDIParentFrame) |
2108f33a JS |
24 | IMPLEMENT_CLASS(wxDocMDIChildFrame, wxMDIChildFrame) |
25 | ||
a9e2e6e5 | 26 | #endif // wxUSE_DOC_VIEW_ARCHITECTURE |
2108f33a | 27 |