##// 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_QXmlInputSource.cpp
44 lines | 1.1 KiB | text/x-c | CppLexer
/ generated_cpp / com_trolltech_qt_xml / PythonQtWrapper_QXmlInputSource.cpp
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include "PythonQtWrapper_QXmlInputSource.h"
#include <QVariant>
#include <qbytearray.h>
#include <qiodevice.h>
QXmlInputSource* PythonQtWrapper_QXmlInputSource::new_QXmlInputSource()
{
return new QXmlInputSource(); }
QXmlInputSource* PythonQtWrapper_QXmlInputSource::new_QXmlInputSource(QIODevice* dev)
{
return new QXmlInputSource(dev); }
QString PythonQtWrapper_QXmlInputSource::data(QXmlInputSource* theWrappedObject) const
{
return theWrappedObject->data();
}
void PythonQtWrapper_QXmlInputSource::fetchData(QXmlInputSource* theWrappedObject)
{
theWrappedObject->fetchData();
}
QChar PythonQtWrapper_QXmlInputSource::next(QXmlInputSource* theWrappedObject)
{
return theWrappedObject->next();
}
void PythonQtWrapper_QXmlInputSource::reset(QXmlInputSource* theWrappedObject)
{
theWrappedObject->reset();
}
void PythonQtWrapper_QXmlInputSource::setData(QXmlInputSource* theWrappedObject, const QByteArray& dat)
{
theWrappedObject->setData(dat);
}
void PythonQtWrapper_QXmlInputSource::setData(QXmlInputSource* theWrappedObject, const QString& dat)
{
theWrappedObject->setData(dat);
}