]> git.saurik.com Git - wxWidgets.git/blob - wxPython/src/_obj.i
Fixes for later WinCE versions
[wxWidgets.git] / wxPython / src / _obj.i
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: _wxobj.i
3 // Purpose: SWIG interface for wxObject
4 //
5 // Author: Robin Dunn
6 //
7 // Created: 9-Aug-2003
8 // RCS-ID: $Id$
9 // Copyright: (c) 2003 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
12
13 // Not a %module
14
15
16 //---------------------------------------------------------------------------
17 %newgroup
18
19 class wxObject {
20 public:
21
22 %extend {
23 wxString GetClassName() {
24 return self->GetClassInfo()->GetClassName();
25 }
26
27 void Destroy() {
28 delete self;
29 }
30 }
31 };
32
33
34 //---------------------------------------------------------------------------