QT
sql-querymodel-customsqlmodel.h
27-Feb-2010 19:37:34
![]()
#ifndef CUSTOMSQLMODEL_H
#define CUSTOMSQLMODEL_H
#include <QSqlQueryModel>
class CustomSqlModel : public QSqlQueryModel
{
Q_OBJECT
public:
CustomSqlModel(QObject *parent = 0);
QVariant data(const QModelIndex &item, int role) const;
};
#endif
| Reply Comment | ||
| |
||
| |
||

