]>
Commit | Line | Data |
---|---|---|
0e320a79 DW |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dcscreen.cpp | |
3 | // Purpose: wxScreenDC class | |
fb46a9a6 | 4 | // Author: David Webster |
0e320a79 | 5 | // Modified by: |
fb46a9a6 | 6 | // Created: 10/14/99 |
0e320a79 | 7 | // RCS-ID: $Id$ |
fb46a9a6 | 8 | // Copyright: (c) David Webster |
0e320a79 DW |
9 | // Licence: wxWindows licence |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
aa213887 SN |
12 | #ifdef __GNUG__ |
13 | #pragma implementation "dcscreen.h" | |
14 | #endif | |
15 | ||
fb46a9a6 DW |
16 | // For compilers that support precompilation, includes "wx.h". |
17 | #include "wx/wxprec.h" | |
18 | ||
19 | #define INCL_DEV | |
20 | #define INCL_GPI | |
21 | #define INCL_PM | |
22 | #include<os2.h> | |
23 | ||
24 | #ifndef WX_PRECOMP | |
25 | #include "wx/string.h" | |
26 | #include "wx/window.h" | |
0e320a79 DW |
27 | #endif |
28 | ||
fb46a9a6 DW |
29 | #include "wx/os2/private.h" |
30 | ||
0e320a79 DW |
31 | #include "wx/dcscreen.h" |
32 | ||
0e320a79 | 33 | IMPLEMENT_DYNAMIC_CLASS(wxScreenDC, wxWindowDC) |
0e320a79 DW |
34 | |
35 | // Create a DC representing the whole screen | |
36 | wxScreenDC::wxScreenDC() | |
37 | { | |
38 | // TODO | |
39 | } | |
40 | ||
41 | wxScreenDC::~wxScreenDC() | |
42 | { | |
43 | // TODO | |
44 | } | |
45 |