mirror of
https://github.com/YACReader/yacreader
synced 2025-07-26 08:55:05 -04:00
19 lines
251 B
C++
19 lines
251 B
C++
#ifndef JSON_MODEL_H
|
|
#define JSON_MODEL_H
|
|
|
|
#include <QAbstractItemModel>
|
|
|
|
class JSONModel : public QAbstractItemModel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit JSONModel(QObject *parent = 0);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
};
|
|
|
|
#endif // JSON_MODEL_H
|