diff options
Diffstat (limited to 'src/model')
| -rw-r--r-- | src/model/TransactionHistorySortFilterModel.cpp | 6 | ||||
| -rw-r--r-- | src/model/TransactionHistorySortFilterModel.h | 12 |
2 files changed, 18 insertions, 0 deletions
diff --git a/src/model/TransactionHistorySortFilterModel.cpp b/src/model/TransactionHistorySortFilterModel.cpp new file mode 100644 index 00000000..67d7b84a --- /dev/null +++ b/src/model/TransactionHistorySortFilterModel.cpp @@ -0,0 +1,6 @@ +#include "TransactionHistorySortFiltrerModel.h" + +TransactionHistorySortFiltrerModel::TransactionHistorySortFiltrerModel() +{ + +} diff --git a/src/model/TransactionHistorySortFilterModel.h b/src/model/TransactionHistorySortFilterModel.h new file mode 100644 index 00000000..bdcab079 --- /dev/null +++ b/src/model/TransactionHistorySortFilterModel.h @@ -0,0 +1,12 @@ +#ifndef TRANSACTIONHISTORYSORTFILTRERMODEL_H +#define TRANSACTIONHISTORYSORTFILTRERMODEL_H + +#include <QObject> + +class TransactionHistorySortFiltrerModel : public QSortFilterProxyModel +{ +public: + TransactionHistorySortFiltrerModel(); +}; + +#endif // TRANSACTIONHISTORYSORTFILTRERMODEL_H
\ No newline at end of file |
