]> git.saurik.com Git - wxWidgets.git/blame - include/wx/print.h
Clarify documentation for wxPropertyGridEvent::GetProperty()
[wxWidgets.git] / include / wx / print.h
CommitLineData
99d80019
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/print.h
3// Purpose: Base header for printer classes
4// Author: Julian Smart
5// Modified by:
6// Created:
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows Licence
10/////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _WX_PRINT_H_BASE_
13#define _WX_PRINT_H_BASE_
c801d85f 14
c8f84271
PC
15#include "wx/defs.h"
16
17#if wxUSE_PRINTING_ARCHITECTURE
18
e81e3883 19#if defined(__WXMSW__) && !defined(__WXUNIVERSAL__)
c801d85f 20
e81e3883 21#include "wx/msw/printwin.h"
c801d85f 22
e7549107
SC
23#elif defined(__WXMAC__)
24
ef0e9220 25#include "wx/osx/printmac.h"
e7549107 26
f23b6f74
JS
27#elif defined(__WXPM__)
28
29#include "wx/os2/printos2.h"
30
c801d85f 31#else
c801d85f 32
e81e3883 33#include "wx/generic/printps.h"
c801d85f
KB
34
35#endif
36
c8f84271 37#endif // wxUSE_PRINTING_ARCHITECTURE
c801d85f 38#endif
34138703 39 // _WX_PRINT_H_BASE_