##// 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_QDomCharacterData.cpp
57 lines | 1.8 KiB | text/x-c | CppLexer
/ generated_cpp / com_trolltech_qt_xml / PythonQtWrapper_QDomCharacterData.cpp
#include "PythonQtWrapper_QDomCharacterData.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
#include <qdom.h>
#include <qtextstream.h>
QDomCharacterData* PythonQtWrapper_QDomCharacterData::new_QDomCharacterData()
{
return new QDomCharacterData(); }
QDomCharacterData* PythonQtWrapper_QDomCharacterData::new_QDomCharacterData(const QDomCharacterData& x)
{
return new QDomCharacterData(x); }
void PythonQtWrapper_QDomCharacterData::insertData(QDomCharacterData* theWrappedObject, unsigned long offset, const QString& arg)
{
theWrappedObject->insertData(offset, arg);
}
void PythonQtWrapper_QDomCharacterData::deleteData(QDomCharacterData* theWrappedObject, unsigned long offset, unsigned long count)
{
theWrappedObject->deleteData(offset, count);
}
void PythonQtWrapper_QDomCharacterData::replaceData(QDomCharacterData* theWrappedObject, unsigned long offset, unsigned long count, const QString& arg)
{
theWrappedObject->replaceData(offset, count, arg);
}
void PythonQtWrapper_QDomCharacterData::appendData(QDomCharacterData* theWrappedObject, const QString& arg)
{
theWrappedObject->appendData(arg);
}
void PythonQtWrapper_QDomCharacterData::setData(QDomCharacterData* theWrappedObject, const QString& arg__1)
{
theWrappedObject->setData(arg__1);
}
uint PythonQtWrapper_QDomCharacterData::length(QDomCharacterData* theWrappedObject) const
{
return theWrappedObject->length();
}
QString PythonQtWrapper_QDomCharacterData::substringData(QDomCharacterData* theWrappedObject, unsigned long offset, unsigned long count)
{
return theWrappedObject->substringData(offset, count);
}
QString PythonQtWrapper_QDomCharacterData::data(QDomCharacterData* theWrappedObject) const
{
return theWrappedObject->data();
}