Add libwx-perl
[pkg-perl] / deb-src / libwx-perl / libwx-perl-0.96 / XS / SVGFileDC.xsp
1 #############################################################################
2 ## Name:        XS/SVGFileDC.xsp
3 ## Purpose:     XS for Wx::SVGFileDC
4 ## Author:      Mattia Barbon
5 ## Modified by:
6 ## Created:     24/12/2007
7 ## RCS-ID:      $Id: SVGFileDC.xsp 2306 2007-12-24 17:27:10Z mbarbon $
8 ## Copyright:   (c) 2007 Mattia Barbon
9 ## Licence:     This program is free software; you can redistribute it and/or
10 ##              modify it under the same terms as Perl itself
11 #############################################################################
12
13 %module{Wx};
14
15 #if WXPERL_W_VERSION_GE( 2, 9, 0 )
16
17 #include <wx/dcsvg.h>
18
19 %typemap{wxSVGFileDC*}{simple};
20
21 %name{Wx::SVGFileDC} class wxSVGFileDC {
22     wxSVGFileDC( const wxString& filename, 
23                  int width = 320,
24                  int height = 240,
25                  double dpi = 72.0 );
26 };
27
28 #endif