2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2016-01-04 16:13:08 +00:00
|
|
|
|
|
|
|
#ifndef SQLCONTACTMODEL_H
|
|
|
|
#define SQLCONTACTMODEL_H
|
|
|
|
|
|
|
|
#include <QSqlQueryModel>
|
|
|
|
|
|
|
|
class SqlContactModel : public QSqlQueryModel
|
|
|
|
{
|
|
|
|
public:
|
2021-10-15 14:09:09 +00:00
|
|
|
SqlContactModel(QObject *parent = nullptr);
|
2016-01-04 16:13:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SQLCONTACTMODEL_H
|