##// END OF EJS Templates
- wrapped instances are now wrapped by class specific subtypes to facilitate future deriving from python...
- wrapped instances are now wrapped by class specific subtypes to facilitate future deriving from python - object creation has changed by using the python type system (calling the type object with PyObject_Call) git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@54 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r18:44e5ff2700cb
Show More
PythonQtWrapper_QDomNodeList.cpp
48 lines | 1.2 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QDomNodeList.h"
#include <QVariant>
#include <qdom.h>
QDomNodeList* PythonQtWrapper_QDomNodeList::new_QDomNodeList()
{
return new QDomNodeList(); }
QDomNodeList* PythonQtWrapper_QDomNodeList::new_QDomNodeList(const QDomNodeList& arg__1)
{
return new QDomNodeList(arg__1); }
QDomNode PythonQtWrapper_QDomNodeList::at(QDomNodeList* theWrappedObject, int index) const
{
return theWrappedObject->at(index);
}
int PythonQtWrapper_QDomNodeList::count(QDomNodeList* theWrappedObject) const
{
return theWrappedObject->count();
}
bool PythonQtWrapper_QDomNodeList::isEmpty(QDomNodeList* theWrappedObject) const
{
return theWrappedObject->isEmpty();
}
QDomNode PythonQtWrapper_QDomNodeList::item(QDomNodeList* theWrappedObject, int index) const
{
return theWrappedObject->item(index);
}
uint PythonQtWrapper_QDomNodeList::length(QDomNodeList* theWrappedObject) const
{
return theWrappedObject->length();
}
bool PythonQtWrapper_QDomNodeList::operator_equal(QDomNodeList* theWrappedObject, const QDomNodeList& arg__1) const
{
return *theWrappedObject == arg__1;
}
int PythonQtWrapper_QDomNodeList::size(QDomNodeList* theWrappedObject) const
{
return theWrappedObject->size();
}