2005-05-04 18:57:50 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/print.h
|
|
|
|
// Purpose: Base header for printer classes
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created:
|
|
|
|
// Copyright: (c) Julian Smart
|
|
|
|
// Licence: wxWindows Licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_PRINT_H_BASE_
|
|
|
|
#define _WX_PRINT_H_BASE_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2006-09-15 16:45:48 +00:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_PRINTING_ARCHITECTURE
|
|
|
|
|
2004-10-12 21:07:42 +00:00
|
|
|
#if defined(__WXMSW__) && !defined(__WXUNIVERSAL__)
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2004-10-12 21:07:42 +00:00
|
|
|
#include "wx/msw/printwin.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-11-09 15:24:52 +00:00
|
|
|
#elif defined(__WXMAC__)
|
|
|
|
|
2008-06-11 19:17:41 +00:00
|
|
|
#include "wx/osx/printmac.h"
|
1999-11-09 15:24:52 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#else
|
|
|
|
|
2004-10-12 21:07:42 +00:00
|
|
|
#include "wx/generic/printps.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2006-09-15 16:45:48 +00:00
|
|
|
#endif // wxUSE_PRINTING_ARCHITECTURE
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
1998-08-15 00:23:28 +00:00
|
|
|
// _WX_PRINT_H_BASE_
|