]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/dcps.h
Make the CreateTool factories be public so they can be used from application code
[wxWidgets.git] / interface / wx / dcps.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: dcps.h
e54c96f1 3// Purpose: interface of wxPostScriptDC
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
526954c5 6// Licence: wxWindows licence
23324ae1
FM
7/////////////////////////////////////////////////////////////////////////////
8
9/**
10 @class wxPostScriptDC
7c913512 11
3a7fb603
BP
12 This defines the wxWidgets Encapsulated PostScript device context, which
13 can write PostScript files on any platform. See wxDC for descriptions of
14 the member functions.
7c913512 15
23324ae1
FM
16 @library{wxbase}
17 @category{dc}
18*/
19class wxPostScriptDC : public wxDC
20{
21public:
9a077460
RD
22 wxPostScriptDC();
23
3a7fb603 24 /**
f910f4d5 25 Constructs a PostScript printer device context from a wxPrintData object.
3a7fb603
BP
26 */
27 wxPostScriptDC(const wxPrintData& printData);
f910f4d5 28
23324ae1
FM
29};
30