##// END OF EJS Templates
renamed guards...
renamed guards git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@53 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r17:4a5dbf143fd4
Show More
PythonQtWrapper_QSqlIndex.cpp
55 lines | 1.4 KiB | text/x-c | CppLexer
#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);
}