1//---------------------------------------------------------------------------
2// This file is generated by wxPython's SIP generator.  Do not edit by hand.
3//
4// Copyright: (c) 2018 by Total Control Software
5// License:   wxWindows License
6//
7// This file will be included by _core.sip
8//
9//---------------------------------------------------------------------------
10
11//---------------------------------------------------------------------------
12
13class wxPostScriptDC : wxDC
14{
15    %Docstring
16        PostScriptDC()
17        PostScriptDC(printData)
18
19        This defines the wxWidgets Encapsulated PostScript device context,
20        which can write PostScript files on any platform.
21    %End
22    %TypeHeaderCode
23        #include <wx/dcps.h>
24    %End
25
26public:
27    wxPostScriptDC();
28    %PreMethodCode
29        if (!wxPyCheckForApp()) return NULL;
30    %End
31
32    wxPostScriptDC(
33        const wxPrintData & printData
34    );
35    %PreMethodCode
36        if (!wxPyCheckForApp()) return NULL;
37    %End
38
39    private:
40        wxPostScriptDC(const wxPostScriptDC&);
41
42
43};  // end of class wxPostScriptDC
44
45
46
47//---------------------------------------------------------------------------
48
49