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