##// 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_QSqlDatabase.cpp
220 lines | 6.0 KiB | text/x-c | CppLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include "PythonQtWrapper_QSqlDatabase.h"
#include <QSize>
#include <QSqlError>
#include <QSqlIndex>
#include <QSqlQuery>
#include <QSqlRecord>
#include <QStringList>
#include <QVariant>
#include <qsqldatabase.h>
#include <qsqldriver.h>
#include <qsqlerror.h>
#include <qsqlindex.h>
#include <qsqlquery.h>
#include <qsqlrecord.h>
#include <qstringlist.h>
QSqlDatabase* PythonQtWrapper_QSqlDatabase::new_QSqlDatabase()
{
return new QSqlDatabase(); }
QSqlDatabase* PythonQtWrapper_QSqlDatabase::new_QSqlDatabase(const QSqlDatabase& other)
{
return new QSqlDatabase(other); }
QSqlDatabase PythonQtWrapper_QSqlDatabase::static_QSqlDatabase_addDatabase(QSqlDriver* driver, const QString& connectionName)
{
return QSqlDatabase::addDatabase(driver, connectionName);
}
QSqlDatabase PythonQtWrapper_QSqlDatabase::static_QSqlDatabase_addDatabase(const QString& type, const QString& connectionName)
{
return QSqlDatabase::addDatabase(type, connectionName);
}
QSqlDatabase PythonQtWrapper_QSqlDatabase::static_QSqlDatabase_cloneDatabase(const QSqlDatabase& other, const QString& connectionName)
{
return QSqlDatabase::cloneDatabase(other, connectionName);
}
void PythonQtWrapper_QSqlDatabase::close(QSqlDatabase* theWrappedObject)
{
theWrappedObject->close();
}
bool PythonQtWrapper_QSqlDatabase::commit(QSqlDatabase* theWrappedObject)
{
return theWrappedObject->commit();
}
QString PythonQtWrapper_QSqlDatabase::connectOptions(QSqlDatabase* theWrappedObject) const
{
return theWrappedObject->connectOptions();
}
QString PythonQtWrapper_QSqlDatabase::connectionName(QSqlDatabase* theWrappedObject) const
{
return theWrappedObject->connectionName();
}
QStringList PythonQtWrapper_QSqlDatabase::static_QSqlDatabase_connectionNames()
{
return QSqlDatabase::connectionNames();
}
bool PythonQtWrapper_QSqlDatabase::static_QSqlDatabase_contains(const QString& connectionName)
{
return QSqlDatabase::contains(connectionName);
}
QSqlDatabase PythonQtWrapper_QSqlDatabase::static_QSqlDatabase_database(const QString& connectionName, bool open)
{
return QSqlDatabase::database(connectionName, open);
}
QString PythonQtWrapper_QSqlDatabase::databaseName(QSqlDatabase* theWrappedObject) const
{
return theWrappedObject->databaseName();
}
QSqlDriver* PythonQtWrapper_QSqlDatabase::driver(QSqlDatabase* theWrappedObject) const
{
return theWrappedObject->driver();
}
QString PythonQtWrapper_QSqlDatabase::driverName(QSqlDatabase* theWrappedObject) const
{
return theWrappedObject->driverName();
}
QStringList PythonQtWrapper_QSqlDatabase::static_QSqlDatabase_drivers()
{
return QSqlDatabase::drivers();
}
QSqlQuery PythonQtWrapper_QSqlDatabase::exec(QSqlDatabase* theWrappedObject, const QString& query) const
{
return theWrappedObject->exec(query);
}
QString PythonQtWrapper_QSqlDatabase::hostName(QSqlDatabase* theWrappedObject) const
{
return theWrappedObject->hostName();
}
bool PythonQtWrapper_QSqlDatabase::static_QSqlDatabase_isDriverAvailable(const QString& name)
{
return QSqlDatabase::isDriverAvailable(name);
}
bool PythonQtWrapper_QSqlDatabase::isOpen(QSqlDatabase* theWrappedObject) const
{
return theWrappedObject->isOpen();
}
bool PythonQtWrapper_QSqlDatabase::isOpenError(QSqlDatabase* theWrappedObject) const
{
return theWrappedObject->isOpenError();
}
bool PythonQtWrapper_QSqlDatabase::isValid(QSqlDatabase* theWrappedObject) const
{
return theWrappedObject->isValid();
}
QSqlError PythonQtWrapper_QSqlDatabase::lastError(QSqlDatabase* theWrappedObject) const
{
return theWrappedObject->lastError();
}
bool PythonQtWrapper_QSqlDatabase::open(QSqlDatabase* theWrappedObject)
{
return theWrappedObject->open();
}
bool PythonQtWrapper_QSqlDatabase::open(QSqlDatabase* theWrappedObject, const QString& user, const QString& password)
{
return theWrappedObject->open(user, password);
}
QString PythonQtWrapper_QSqlDatabase::password(QSqlDatabase* theWrappedObject) const
{
return theWrappedObject->password();
}
int PythonQtWrapper_QSqlDatabase::port(QSqlDatabase* theWrappedObject) const
{
return theWrappedObject->port();
}
QSqlIndex PythonQtWrapper_QSqlDatabase::primaryIndex(QSqlDatabase* theWrappedObject, const QString& tablename) const
{
return theWrappedObject->primaryIndex(tablename);
}
QSqlRecord PythonQtWrapper_QSqlDatabase::record(QSqlDatabase* theWrappedObject, const QString& tablename) const
{
return theWrappedObject->record(tablename);
}
void PythonQtWrapper_QSqlDatabase::static_QSqlDatabase_registerSqlDriver(const QString& name, QSqlDriverCreatorBase* creator)
{
QSqlDatabase::registerSqlDriver(name, creator);
}
void PythonQtWrapper_QSqlDatabase::static_QSqlDatabase_removeDatabase(const QString& connectionName)
{
QSqlDatabase::removeDatabase(connectionName);
}
bool PythonQtWrapper_QSqlDatabase::rollback(QSqlDatabase* theWrappedObject)
{
return theWrappedObject->rollback();
}
void PythonQtWrapper_QSqlDatabase::setConnectOptions(QSqlDatabase* theWrappedObject, const QString& options)
{
theWrappedObject->setConnectOptions(options);
}
void PythonQtWrapper_QSqlDatabase::setDatabaseName(QSqlDatabase* theWrappedObject, const QString& name)
{
theWrappedObject->setDatabaseName(name);
}
void PythonQtWrapper_QSqlDatabase::setHostName(QSqlDatabase* theWrappedObject, const QString& host)
{
theWrappedObject->setHostName(host);
}
void PythonQtWrapper_QSqlDatabase::setPassword(QSqlDatabase* theWrappedObject, const QString& password)
{
theWrappedObject->setPassword(password);
}
void PythonQtWrapper_QSqlDatabase::setPort(QSqlDatabase* theWrappedObject, int p)
{
theWrappedObject->setPort(p);
}
void PythonQtWrapper_QSqlDatabase::setUserName(QSqlDatabase* theWrappedObject, const QString& name)
{
theWrappedObject->setUserName(name);
}
QStringList PythonQtWrapper_QSqlDatabase::tables(QSqlDatabase* theWrappedObject, QSql::TableType type) const
{
return theWrappedObject->tables(type);
}
bool PythonQtWrapper_QSqlDatabase::transaction(QSqlDatabase* theWrappedObject)
{
return theWrappedObject->transaction();
}
QString PythonQtWrapper_QSqlDatabase::userName(QSqlDatabase* theWrappedObject) const
{
return theWrappedObject->userName();
}