mirror of
https://github.com/YACReader/yacreader
synced 2025-06-04 01:28:55 -04:00
19 lines
251 B
C++
19 lines
251 B
C++
#ifndef VOLUMES_MODEL_H
|
|
#define VOLUMES_MODEL_H
|
|
|
|
#include "json_model.h"
|
|
|
|
class VolumesModel : public JSONModel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit VolumesModel(QObject *parent = 0);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
};
|
|
|
|
#endif // VOLUMES_MODEL_H
|