##// END OF EJS Templates
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well...
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@52 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r16:c68e0aff542c
Show More
PythonQtWrapper_QSqlError.cpp
63 lines | 1.7 KiB | text/x-c | CppLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include "PythonQtWrapper_QSqlError.h"
#include <QVariant>
#include <qsqlerror.h>
QSqlError* PythonQtWrapper_QSqlError::new_QSqlError(const QSqlError& other)
{
return new QSqlError(other); }
QSqlError* PythonQtWrapper_QSqlError::new_QSqlError(const QString& driverText, const QString& databaseText, QSqlError::ErrorType type, int number)
{
return new QSqlError(driverText, databaseText, type, number); }
QString PythonQtWrapper_QSqlError::databaseText(QSqlError* theWrappedObject) const
{
return theWrappedObject->databaseText();
}
QString PythonQtWrapper_QSqlError::driverText(QSqlError* theWrappedObject) const
{
return theWrappedObject->driverText();
}
bool PythonQtWrapper_QSqlError::isValid(QSqlError* theWrappedObject) const
{
return theWrappedObject->isValid();
}
int PythonQtWrapper_QSqlError::number(QSqlError* theWrappedObject) const
{
return theWrappedObject->number();
}
void PythonQtWrapper_QSqlError::setDatabaseText(QSqlError* theWrappedObject, const QString& databaseText)
{
theWrappedObject->setDatabaseText(databaseText);
}
void PythonQtWrapper_QSqlError::setDriverText(QSqlError* theWrappedObject, const QString& driverText)
{
theWrappedObject->setDriverText(driverText);
}
void PythonQtWrapper_QSqlError::setNumber(QSqlError* theWrappedObject, int number)
{
theWrappedObject->setNumber(number);
}
void PythonQtWrapper_QSqlError::setType(QSqlError* theWrappedObject, QSqlError::ErrorType type)
{
theWrappedObject->setType(type);
}
QString PythonQtWrapper_QSqlError::text(QSqlError* theWrappedObject) const
{
return theWrappedObject->text();
}
QSqlError::ErrorType PythonQtWrapper_QSqlError::type(QSqlError* theWrappedObject) const
{
return theWrappedObject->type();
}