2003-11-12 16:34:20 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: _xmlres.i
|
|
|
|
// Purpose: SWIG interface for wxXmlSubclassFactory
|
|
|
|
//
|
|
|
|
// Author: Robin Dunn
|
|
|
|
//
|
|
|
|
// Created: 4-June-2001
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2003 by Total Control Software
|
|
|
|
// Licence: wxWindows license
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Not a %module
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
%newgroup
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%{
|
|
|
|
class wxPyXmlSubclassFactory : public wxXmlSubclassFactory
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxPyXmlSubclassFactory() {}
|
|
|
|
DEC_PYCALLBACK_OBJECT_STRING_pure(Create);
|
|
|
|
PYPRIVATE;
|
|
|
|
};
|
|
|
|
|
|
|
|
IMP_PYCALLBACK_OBJECT_STRING_pure(wxPyXmlSubclassFactory, wxXmlSubclassFactory, Create);
|
|
|
|
%}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%name(XmlSubclassFactory)class wxPyXmlSubclassFactory {
|
|
|
|
public:
|
2004-01-30 20:18:37 -05:00
|
|
|
%pythonAppend wxPyXmlSubclassFactory "self._setCallbackInfo(self, XmlSubclassFactory)"
|
2003-11-12 16:34:20 -05:00
|
|
|
wxPyXmlSubclassFactory();
|
|
|
|
void _setCallbackInfo(PyObject* self, PyObject* _class);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//---------------------------------------------------------------------------
|