Add wxSVGFileDC

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45507 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2007-04-16 19:23:35 +00:00
parent 9b89d98dac
commit 3eddc6bc00

View File

@ -1890,5 +1890,23 @@ public:
};
#endif
//---------------------------------------------------------------------------
%{
#include <wx/dcsvg.h>
%}
class wxSVGFileDC : public wxDC
{
%nokwargs wxSVGFileDC;
wxSVGFileDC(wxString f);
wxSVGFileDC(wxString f, int Width, int Height);
wxSVGFileDC(wxString f, int Width, int Height, float dpi);
~wxSVGFileDC();
};
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------