##// END OF EJS Templates
- added hasOwner method to manage ownership more nicely...
- added hasOwner method to manage ownership more nicely - added force flag to make delete() work - added check for hasOwner git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@51 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r15:ae998290bf19
Show More
PythonQtWrapper_QSqlRelation.cpp
32 lines | 893 B | text/x-c | CppLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include "PythonQtWrapper_QSqlRelation.h"
#include <QVariant>
QSqlRelation* PythonQtWrapper_QSqlRelation::new_QSqlRelation()
{
return new QSqlRelation(); }
QSqlRelation* PythonQtWrapper_QSqlRelation::new_QSqlRelation(const QString& aTableName, const QString& indexCol, const QString& displayCol)
{
return new QSqlRelation(aTableName, indexCol, displayCol); }
QString PythonQtWrapper_QSqlRelation::displayColumn(QSqlRelation* theWrappedObject) const
{
return theWrappedObject->displayColumn();
}
QString PythonQtWrapper_QSqlRelation::indexColumn(QSqlRelation* theWrappedObject) const
{
return theWrappedObject->indexColumn();
}
bool PythonQtWrapper_QSqlRelation::isValid(QSqlRelation* theWrappedObject) const
{
return theWrappedObject->isValid();
}
QString PythonQtWrapper_QSqlRelation::tableName(QSqlRelation* theWrappedObject) const
{
return theWrappedObject->tableName();
}