blob: b50b9728e45a80c5f9aa242682523caccd3a8d89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef BEETPLAYERPROXY_H
#define BEETPLAYERPROXY_H
#include <QSortFilterProxyModel>
class BeetPlayerProxy : public QSortFilterProxyModel {
Q_OBJECT
public:
BeetPlayerProxy(QObject *parent = 0);
protected:
virtual bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;
};
#endif // BEETPLAYERPROXY_H
|