##// END OF EJS Templates
- added call method that does a direct call on the ObjectType...
- added call method that does a direct call on the ObjectType - added comments and improved docs git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@72 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r36:1d1e7c03e848
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();
}