]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | #ifndef __PRINTH_BASE__ |
2 | #define __PRINTH_BASE__ | |
3 | ||
4 | #if defined(__WINDOWS__) | |
5 | #include "wx/msw/printwin.h" | |
6 | ||
7 | #ifndef wxPrinter | |
8 | #define wxPrinter wxWindowsPrinter | |
9 | #endif | |
10 | #ifndef wxPrintPreview | |
11 | #define wxPrintPreview wxWindowsPrintPreview | |
12 | #endif | |
13 | ||
14 | #else | |
15 | #include "wx/generic/printps.h" | |
16 | ||
17 | #ifndef wxPrinter | |
18 | #define wxPrinter wxPostScriptPrinter | |
19 | #endif | |
20 | #ifndef wxPrintPreview | |
21 | #define wxPrintPreview wxPostScriptPrintPreview | |
22 | #endif | |
23 | ||
24 | #endif | |
25 | ||
26 | ||
27 | #endif | |
28 | // __PRINTH_BASE__ |