From e7e6c583b676325d64e10cf75257c000e35cd344 Mon Sep 17 00:00:00 2001 From: Ilya Kitaev Date: Fri, 7 Oct 2016 16:20:52 +0300 Subject: [PATCH] Adding sort-filter-proxy model --- src/model/TransactionHistorySortFilterModel.cpp | 6 ++++++ src/model/TransactionHistorySortFilterModel.h | 12 ++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 src/model/TransactionHistorySortFilterModel.cpp create mode 100644 src/model/TransactionHistorySortFilterModel.h 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 + +class TransactionHistorySortFiltrerModel : public QSortFilterProxyModel +{ +public: + TransactionHistorySortFiltrerModel(); +}; + +#endif // TRANSACTIONHISTORYSORTFILTRERMODEL_H \ No newline at end of file