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