print.h 776 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. #ifndef _WX_PRINT_H_BASE_
  11. #define _WX_PRINT_H_BASE_
  12. #include "wx/defs.h"
  13. #if wxUSE_PRINTING_ARCHITECTURE
  14. #if defined(__WXMSW__) && !defined(__WXUNIVERSAL__)
  15. #include "wx/msw/printwin.h"
  16. #elif defined(__WXMAC__)
  17. #include "wx/osx/printmac.h"
  18. #elif defined(__WXPM__)
  19. #include "wx/os2/printos2.h"
  20. #else
  21. #include "wx/generic/printps.h"
  22. #endif
  23. #endif // wxUSE_PRINTING_ARCHITECTURE
  24. #endif
  25. // _WX_PRINT_H_BASE_