#include "PythonQtWrapper_QPictureIO.h" #include #include #include #include #include #include #include #include QPictureIO* PythonQtWrapper_QPictureIO::new_QPictureIO() { return new QPictureIO(); } QPictureIO* PythonQtWrapper_QPictureIO::new_QPictureIO(QIODevice* ioDevice, const char* format) { return new QPictureIO(ioDevice, format); } QPictureIO* PythonQtWrapper_QPictureIO::new_QPictureIO(const QString& fileName, const char* format) { return new QPictureIO(fileName, format); } const char* PythonQtWrapper_QPictureIO::format(QPictureIO* theWrappedObject) const { return theWrappedObject->format(); } QByteArray PythonQtWrapper_QPictureIO::static_QPictureIO_pictureFormat(QIODevice* arg__1) { return QPictureIO::pictureFormat(arg__1); } void PythonQtWrapper_QPictureIO::setDescription(QPictureIO* theWrappedObject, const QString& arg__1) { theWrappedObject->setDescription(arg__1); } int PythonQtWrapper_QPictureIO::status(QPictureIO* theWrappedObject) const { return theWrappedObject->status(); } QString PythonQtWrapper_QPictureIO::description(QPictureIO* theWrappedObject) const { return theWrappedObject->description(); } QList PythonQtWrapper_QPictureIO::static_QPictureIO_outputFormats() { return QPictureIO::outputFormats(); } void PythonQtWrapper_QPictureIO::setGamma(QPictureIO* theWrappedObject, float arg__1) { theWrappedObject->setGamma(arg__1); } QList PythonQtWrapper_QPictureIO::static_QPictureIO_inputFormats() { return QPictureIO::inputFormats(); } const char* PythonQtWrapper_QPictureIO::parameters(QPictureIO* theWrappedObject) const { return theWrappedObject->parameters(); } int PythonQtWrapper_QPictureIO::quality(QPictureIO* theWrappedObject) const { return theWrappedObject->quality(); } void PythonQtWrapper_QPictureIO::setParameters(QPictureIO* theWrappedObject, const char* arg__1) { theWrappedObject->setParameters(arg__1); } QString PythonQtWrapper_QPictureIO::fileName(QPictureIO* theWrappedObject) const { return theWrappedObject->fileName(); } void PythonQtWrapper_QPictureIO::setFormat(QPictureIO* theWrappedObject, const char* arg__1) { theWrappedObject->setFormat(arg__1); } const QPicture& PythonQtWrapper_QPictureIO::picture(QPictureIO* theWrappedObject) const { return theWrappedObject->picture(); } QByteArray PythonQtWrapper_QPictureIO::static_QPictureIO_pictureFormat(const QString& fileName) { return QPictureIO::pictureFormat(fileName); } bool PythonQtWrapper_QPictureIO::read(QPictureIO* theWrappedObject) { return theWrappedObject->read(); } float PythonQtWrapper_QPictureIO::gamma(QPictureIO* theWrappedObject) const { return theWrappedObject->gamma(); } void PythonQtWrapper_QPictureIO::setFileName(QPictureIO* theWrappedObject, const QString& arg__1) { theWrappedObject->setFileName(arg__1); } bool PythonQtWrapper_QPictureIO::write(QPictureIO* theWrappedObject) { return theWrappedObject->write(); } void PythonQtWrapper_QPictureIO::setIODevice(QPictureIO* theWrappedObject, QIODevice* arg__1) { theWrappedObject->setIODevice(arg__1); } void PythonQtWrapper_QPictureIO::setQuality(QPictureIO* theWrappedObject, int arg__1) { theWrappedObject->setQuality(arg__1); } QIODevice* PythonQtWrapper_QPictureIO::ioDevice(QPictureIO* theWrappedObject) const { return theWrappedObject->ioDevice(); } void PythonQtWrapper_QPictureIO::setStatus(QPictureIO* theWrappedObject, int arg__1) { theWrappedObject->setStatus(arg__1); } void PythonQtWrapper_QPictureIO::setPicture(QPictureIO* theWrappedObject, const QPicture& arg__1) { theWrappedObject->setPicture(arg__1); }