##// END OF EJS Templates
- added call method that does a direct call on the ObjectType...
- added call method that does a direct call on the ObjectType - added comments and improved docs git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@72 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r36:1d1e7c03e848
Show More
PythonQtWrapper_QSqlRelation.cpp
35 lines | 997 B | text/x-c | CppLexer
#include "PythonQtWrapper_QSqlRelation.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.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); }
bool PythonQtWrapper_QSqlRelation::isValid(QSqlRelation* theWrappedObject) const
{
return theWrappedObject->isValid();
}
QString PythonQtWrapper_QSqlRelation::tableName(QSqlRelation* theWrappedObject) const
{
return theWrappedObject->tableName();
}
QString PythonQtWrapper_QSqlRelation::indexColumn(QSqlRelation* theWrappedObject) const
{
return theWrappedObject->indexColumn();
}
QString PythonQtWrapper_QSqlRelation::displayColumn(QSqlRelation* theWrappedObject) const
{
return theWrappedObject->displayColumn();
}