]>
Commit | Line | Data |
---|---|---|
1 | #ifndef _WX_PRINT_H_BASE_ | |
2 | #define _WX_PRINT_H_BASE_ | |
3 | ||
4 | #if defined(__WXMSW__) && !defined(__WXUNIVERSAL__) | |
5 | ||
6 | #include "wx/msw/printwin.h" | |
7 | ||
8 | #elif defined(__WXMAC__) | |
9 | ||
10 | #include "wx/mac/printmac.h" | |
11 | ||
12 | #elif defined(__WXPM__) | |
13 | ||
14 | #include "wx/os2/printos2.h" | |
15 | ||
16 | #else | |
17 | ||
18 | #include "wx/generic/printps.h" | |
19 | ||
20 | #endif | |
21 | ||
22 | ||
23 | #endif | |
24 | // _WX_PRINT_H_BASE_ |