| 21 | #include "CustomFilterProxyModel.h" |
| 22 | |
| 23 | CustomFilterProxyModel::CustomFilterProxyModel(QObject* parent) : QSortFilterProxyModel(parent) |
| 24 | { |
| 25 | }; |
| 26 | |
| 27 | bool CustomFilterProxyModel::filterAcceptsRow(int sourceRow, const QModelIndex& sourceParent) const |
| 28 | { |
nothing calls this directly
no outgoing calls
no test coverage detected