This repository has been archived on 2024-06-03. You can view files and clone it, but cannot push or open issues or pull requests.
app/sqlstoragemodel.h
2018-07-22 16:47:55 +02:00

18 lines
249 B
C++

#ifndef SQLSTORAGEMODEL_H
#define SQLSTORAGEMODEL_H
#include <QObject>
class SqlStorageModel : public QObject
{
Q_OBJECT
public:
explicit SqlStorageModel(QObject *parent = nullptr);
signals:
public slots:
};
#endif // SQLSTORAGEMODEL_H