summaryrefslogtreecommitdiffstats
path: root/storemodel.h
diff options
context:
space:
mode:
Diffstat (limited to 'storemodel.h')
-rw-r--r--storemodel.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/storemodel.h b/storemodel.h
index a02b033f..e503a1ce 100644
--- a/storemodel.h
+++ b/storemodel.h
@@ -2,15 +2,20 @@
#define STOREMODEL_H
#include <QSortFilterProxyModel>
+#include <QFileSystemModel>
class StoreModel : public QSortFilterProxyModel
{
Q_OBJECT
+private:
+ QFileSystemModel* fs;
+
public:
StoreModel();
bool filterAcceptsRow(int, const QModelIndex &) const;
bool ShowThis(const QModelIndex) const;
+ void setFSModel(QFileSystemModel *sourceModel);
};
#endif // STOREMODEL_H