##// END OF EJS Templates
added initial generated wrappers for Qt 4.4.3...
added initial generated wrappers for Qt 4.4.3 git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@49 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r13:d46b01f7163a
Show More
PythonQtWrapper_QDomCharacterData.cpp
54 lines | 1.7 KiB | text/x-c | CppLexer
/ generated_cpp / com_trolltech_qt_xml / PythonQtWrapper_QDomCharacterData.cpp
#include "PythonQtWrapper_QDomCharacterData.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::appendData(QDomCharacterData* theWrappedObject, const QString& arg)
{
theWrappedObject->appendData(arg);
}
QString PythonQtWrapper_QDomCharacterData::data(QDomCharacterData* theWrappedObject) const
{
return theWrappedObject->data();
}
void PythonQtWrapper_QDomCharacterData::deleteData(QDomCharacterData* theWrappedObject, unsigned long offset, unsigned long count)
{
theWrappedObject->deleteData(offset, count);
}
void PythonQtWrapper_QDomCharacterData::insertData(QDomCharacterData* theWrappedObject, unsigned long offset, const QString& arg)
{
theWrappedObject->insertData(offset, arg);
}
uint PythonQtWrapper_QDomCharacterData::length(QDomCharacterData* theWrappedObject) const
{
return theWrappedObject->length();
}
void PythonQtWrapper_QDomCharacterData::replaceData(QDomCharacterData* theWrappedObject, unsigned long offset, unsigned long count, const QString& arg)
{
theWrappedObject->replaceData(offset, count, arg);
}
void PythonQtWrapper_QDomCharacterData::setData(QDomCharacterData* theWrappedObject, const QString& arg__1)
{
theWrappedObject->setData(arg__1);
}
QString PythonQtWrapper_QDomCharacterData::substringData(QDomCharacterData* theWrappedObject, unsigned long offset, unsigned long count)
{
return theWrappedObject->substringData(offset, count);
}