summaryrefslogtreecommitdiffstats
path: root/storemodel.h
blob: a02b033f7ac5ccdd84605735d3815d1b09c62cbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef STOREMODEL_H
#define STOREMODEL_H

#include <QSortFilterProxyModel>

class StoreModel : public QSortFilterProxyModel
{
    Q_OBJECT
public:
    StoreModel();

    bool filterAcceptsRow(int, const QModelIndex &) const;
    bool ShowThis(const QModelIndex) const;
};

#endif // STOREMODEL_H