1 /////////////////////////////////////////////////////////////////////////////
 
   3 // Purpose:     SWIG interface for wxObject
 
   9 // Copyright:   (c) 2003 by Total Control Software
 
  10 // Licence:     wxWindows license
 
  11 /////////////////////////////////////////////////////////////////////////////
 
  16 //---------------------------------------------------------------------------
 
  20 "The base class for most wx objects, although in wxPython not
 
  21 much functionality is needed nor exposed.", "");
 
  28                "Returns the class name of the C++ class using wxRTTI.", "");
 
  29         wxString GetClassName() {
 
  30             return self->GetClassInfo()->GetClassName();
 
  33         %pythonPrepend Destroy "args[0].this.own(False)"
 
  35                "Deletes the C++ object this Python object is a proxy for.", "");
 
  42         bool , IsSameAs(const wxObject& p) const,
 
  43         "For wx.Objects that use C++ reference counting internally, this method
 
  44 can be used to determine if two objects are referencing the same data
 
  48     %property(ClassName, GetClassName, doc="See `GetClassName`");
 
  52 //---------------------------------------------------------------------------