]>
Commit | Line | Data |
---|---|---|
99d80019 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/dcscreen.h | |
3 | // Purpose: wxScreenDC base header | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: | |
7 | // Copyright: (c) Julian Smart | |
8 | // RCS-ID: $Id$ | |
9 | // Licence: wxWindows Licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
34138703 JS |
12 | #ifndef _WX_DCSCREEN_H_BASE_ |
13 | #define _WX_DCSCREEN_H_BASE_ | |
c801d85f | 14 | |
4055ed82 | 15 | #if defined(__WXPALMOS__) |
ffecfa5a JS |
16 | #include "wx/palmos/dcscreen.h" |
17 | #elif defined(__WXMSW__) | |
c801d85f | 18 | #include "wx/msw/dcscreen.h" |
2049ba38 | 19 | #elif defined(__WXMOTIF__) |
34138703 | 20 | #include "wx/motif/dcscreen.h" |
2049ba38 | 21 | #elif defined(__WXGTK__) |
c801d85f | 22 | #include "wx/gtk/dcscreen.h" |
83df96d6 JS |
23 | #elif defined(__WXX11__) |
24 | #include "wx/x11/dcscreen.h" | |
1e6feb95 VZ |
25 | #elif defined(__WXMGL__) |
26 | #include "wx/mgl/dcscreen.h" | |
34138703 JS |
27 | #elif defined(__WXMAC__) |
28 | #include "wx/mac/dcscreen.h" | |
e64df9bc DE |
29 | #elif defined(__WXCOCOA__) |
30 | #include "wx/cocoa/dcscreen.h" | |
1777b9bb DW |
31 | #elif defined(__WXPM__) |
32 | #include "wx/os2/dcscreen.h" | |
c801d85f KB |
33 | #endif |
34 | ||
35 | #endif | |
34138703 | 36 | // _WX_DCSCREEN_H_BASE_ |