18 lines
250 B
C++
18 lines
250 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
|