]> git.cworth.org Git - apitrace/blob - gui/apitracefilter.h
c19a5e2ccd3ca2ae22ea9e0d9c00fcd470274942
[apitrace] / gui / apitracefilter.h
1 #ifndef APITRACEFILTER_H
2 #define APITRACEFILTER_H
3
4 #include <QSortFilterProxyModel>
5
6 //! [0]
7 class ApiTraceFilter : public QSortFilterProxyModel
8 {
9     Q_OBJECT
10
11 public:
12     ApiTraceFilter(QObject *parent = 0);
13
14 protected:
15     bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const;
16 };
17
18 #endif