X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c801d85f158c4cba50b588807daabdcbd0ed3853..b02dd12239c8a59b9a545d9fcb04974f8ad02c6b:/include/wx/print.h

diff --git a/include/wx/print.h b/include/wx/print.h
index 0eeee4fe6a..12160a8e1a 100644
--- a/include/wx/print.h
+++ b/include/wx/print.h
@@ -1,28 +1,39 @@
-#ifndef __PRINTH_BASE__
-#define __PRINTH_BASE__
+/////////////////////////////////////////////////////////////////////////////
+// Name:        wx/print.h
+// Purpose:     Base header for printer classes
+// Author:      Julian Smart
+// Modified by:
+// Created:
+// RCS-ID:      $Id$
+// Copyright:   (c) Julian Smart
+// Licence:     wxWindows Licence
+/////////////////////////////////////////////////////////////////////////////
+
+#ifndef _WX_PRINT_H_BASE_
+#define _WX_PRINT_H_BASE_
+
+#include "wx/defs.h"
+
+#if wxUSE_PRINTING_ARCHITECTURE
+
+#if defined(__WXMSW__) && !defined(__WXUNIVERSAL__)
 
-#if defined(__WINDOWS__)
 #include "wx/msw/printwin.h"
 
-#ifndef wxPrinter
-#define wxPrinter wxWindowsPrinter
-#endif
-#ifndef wxPrintPreview
-#define wxPrintPreview wxWindowsPrintPreview
-#endif
+#elif defined(__WXMAC__)
+
+#include "wx/osx/printmac.h"
+
+#elif defined(__WXPM__)
+
+#include "wx/os2/printos2.h"
 
 #else
-#include "wx/generic/printps.h"
 
-#ifndef wxPrinter
-#define wxPrinter wxPostScriptPrinter
-#endif
-#ifndef wxPrintPreview
-#define wxPrintPreview wxPostScriptPrintPreview
-#endif
+#include "wx/generic/printps.h"
 
 #endif
 
-
+#endif // wxUSE_PRINTING_ARCHITECTURE
 #endif
-    // __PRINTH_BASE__
+    // _WX_PRINT_H_BASE_