]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: minifram.cpp | |
3 | // Purpose: wxMiniFrame. Optional; identical to wxFrame if not supported. | |
4 | // Author: David Webster | |
5 | // Modified by: | |
6 | // Created: 10/10/99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) David Webster | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // For compilers that support precompilation, includes "wx.h". | |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #include "wx/window.h" | |
16 | #include "wx/os2/private.h" | |
17 | ||
18 | #ifndef WX_PRECOMP | |
19 | #include "wx/setup.h" | |
20 | #include "wx/event.h" | |
21 | #include "wx/app.h" | |
22 | #include "wx/utils.h" | |
23 | #endif | |
24 | ||
25 | #include "wx/minifram.h" | |
26 | ||
27 | IMPLEMENT_DYNAMIC_CLASS(wxMiniFrame, wxFrame) | |
28 |