mirror of
https://github.com/YACReader/yacreader
synced 2025-06-04 01:28:55 -04:00
19 lines
295 B
C++
19 lines
295 B
C++
#ifndef READING_LIST_MODEL_H
|
|
#define READING_LIST_MODEL_H
|
|
|
|
#include <QAbstractItemModel>
|
|
|
|
class ReadingListModel : public QAbstractItemModel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ReadingListModel(QObject *parent = 0);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
};
|
|
|
|
#endif // READING_LIST_MODEL_H
|