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