##// END OF EJS Templates
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes...
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@70 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r34:5daedfb035c8
Show More
PythonQtWrapper_QDomNodeList.cpp
51 lines | 1.3 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QDomNodeList.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.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); }
bool PythonQtWrapper_QDomNodeList::isEmpty(QDomNodeList* theWrappedObject) const
{
return theWrappedObject->isEmpty();
}
int PythonQtWrapper_QDomNodeList::count(QDomNodeList* theWrappedObject) const
{
return theWrappedObject->count();
}
QDomNode PythonQtWrapper_QDomNodeList::item(QDomNodeList* theWrappedObject, int index) const
{
return theWrappedObject->item(index);
}
int PythonQtWrapper_QDomNodeList::size(QDomNodeList* theWrappedObject) const
{
return theWrappedObject->size();
}
uint PythonQtWrapper_QDomNodeList::length(QDomNodeList* theWrappedObject) const
{
return theWrappedObject->length();
}
QDomNode PythonQtWrapper_QDomNodeList::at(QDomNodeList* theWrappedObject, int index) const
{
return theWrappedObject->at(index);
}
bool PythonQtWrapper_QDomNodeList::operator_equal(QDomNodeList* theWrappedObject, const QDomNodeList& arg__1) const
{
return (*theWrappedObject)== arg__1;
}