diff options
| author | Ilya Kitaev <mbg033@gmail.com> | 2016-10-07 16:20:52 +0300 |
|---|---|---|
| committer | Ilya Kitaev <mbg033@gmail.com> | 2016-10-10 00:19:13 +0300 |
| commit | e7e6c583b676325d64e10cf75257c000e35cd344 (patch) | |
| tree | e3c2b0cb8ec231e44fb7bf1dcc40bbe816d73c54 | |
| parent | 0498c3ba64ace2bd8898a5d0ba3107a2f024c692 (diff) | |
| download | monzero-gui-e7e6c583b676325d64e10cf75257c000e35cd344.tar.gz monzero-gui-e7e6c583b676325d64e10cf75257c000e35cd344.tar.xz monzero-gui-e7e6c583b676325d64e10cf75257c000e35cd344.zip | |
Adding sort-filter-proxy 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 |
