##// 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_QSqlIndex.cpp
55 lines | 1.4 KiB | text/x-c | CppLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include "PythonQtWrapper_QSqlIndex.h"
#include <QVariant>
#include <qsqlfield.h>
#include <qsqlindex.h>
#include <qsqlrecord.h>
QSqlIndex* PythonQtWrapper_QSqlIndex::new_QSqlIndex(const QSqlIndex& other)
{
return new QSqlIndex(other); }
QSqlIndex* PythonQtWrapper_QSqlIndex::new_QSqlIndex(const QString& cursorName, const QString& name)
{
return new QSqlIndex(cursorName, name); }
void PythonQtWrapper_QSqlIndex::append(QSqlIndex* theWrappedObject, const QSqlField& field)
{
theWrappedObject->append(field);
}
void PythonQtWrapper_QSqlIndex::append(QSqlIndex* theWrappedObject, const QSqlField& field, bool desc)
{
theWrappedObject->append(field, desc);
}
QString PythonQtWrapper_QSqlIndex::cursorName(QSqlIndex* theWrappedObject) const
{
return theWrappedObject->cursorName();
}
bool PythonQtWrapper_QSqlIndex::isDescending(QSqlIndex* theWrappedObject, int i) const
{
return theWrappedObject->isDescending(i);
}
QString PythonQtWrapper_QSqlIndex::name(QSqlIndex* theWrappedObject) const
{
return theWrappedObject->name();
}
void PythonQtWrapper_QSqlIndex::setCursorName(QSqlIndex* theWrappedObject, const QString& cursorName)
{
theWrappedObject->setCursorName(cursorName);
}
void PythonQtWrapper_QSqlIndex::setDescending(QSqlIndex* theWrappedObject, int i, bool desc)
{
theWrappedObject->setDescending(i, desc);
}
void PythonQtWrapper_QSqlIndex::setName(QSqlIndex* theWrappedObject, const QString& name)
{
theWrappedObject->setName(name);
}