]>
Commit | Line | Data |
---|---|---|
99d80019 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/print.h | |
3 | // Purpose: Base header for printer classes | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: | |
99d80019 JS |
7 | // Copyright: (c) Julian Smart |
8 | // Licence: wxWindows Licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
34138703 JS |
11 | #ifndef _WX_PRINT_H_BASE_ |
12 | #define _WX_PRINT_H_BASE_ | |
c801d85f | 13 | |
c8f84271 PC |
14 | #include "wx/defs.h" |
15 | ||
16 | #if wxUSE_PRINTING_ARCHITECTURE | |
17 | ||
e81e3883 | 18 | #if defined(__WXMSW__) && !defined(__WXUNIVERSAL__) |
c801d85f | 19 | |
e81e3883 | 20 | #include "wx/msw/printwin.h" |
c801d85f | 21 | |
e7549107 SC |
22 | #elif defined(__WXMAC__) |
23 | ||
ef0e9220 | 24 | #include "wx/osx/printmac.h" |
e7549107 | 25 | |
f23b6f74 JS |
26 | #elif defined(__WXPM__) |
27 | ||
28 | #include "wx/os2/printos2.h" | |
29 | ||
c801d85f | 30 | #else |
c801d85f | 31 | |
e81e3883 | 32 | #include "wx/generic/printps.h" |
c801d85f KB |
33 | |
34 | #endif | |
35 | ||
c8f84271 | 36 | #endif // wxUSE_PRINTING_ARCHITECTURE |
c801d85f | 37 | #endif |
34138703 | 38 | // _WX_PRINT_H_BASE_ |