#ifndef __PRINTPSH__
#define __PRINTPSH__
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
#pragma interface "printps.h"
#endif
#include "wx/prntbase.h"
+#if wxUSE_PRINTING_ARCHITECTURE && wxUSE_POSTSCRIPT
+
// ----------------------------------------------------------------------------
// Represents the printer: manages printing a wxPrintout object
// ----------------------------------------------------------------------------
void Init(wxPrintout *printout, wxPrintout *printoutForPrinting);
};
+#endif
+
#endif
// __PRINTPSH__