class wxImage : public wxObject {
public:
+ %typemap(out) wxImage*; // turn off this typemap
+
DocCtorStr(
wxImage( const wxString& name, long type = wxBITMAP_TYPE_ANY, int index = -1 ),
"", "");
// TODO: wxImage( char** xpmData );
+ // Turn it back on again
+ %typemap(out) wxImage* { $result = wxPyMake_wxObject($1, $owner); }
+
+
void Create( int width, int height );
void Destroy();