2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#ifndef CUSTOMSQLMODEL_H
|
|
|
|
#define CUSTOMSQLMODEL_H
|
|
|
|
|
|
|
|
#include <QSqlQueryModel>
|
|
|
|
|
|
|
|
//! [0]
|
|
|
|
class CustomSqlModel : public QSqlQueryModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-07-20 14:39:01 +00:00
|
|
|
CustomSqlModel(QObject *parent = nullptr);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2016-06-15 08:12:35 +00:00
|
|
|
QVariant data(const QModelIndex &item, int role) const override;
|
2011-04-27 10:05:43 +00:00
|
|
|
};
|
|
|
|
//! [0]
|
|
|
|
|
|
|
|
#endif
|