mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 16:28:14 +00:00
Adding sort-filter-proxy model
This commit is contained in:
parent
0498c3ba64
commit
e7e6c583b6
2 changed files with 18 additions and 0 deletions
6
src/model/TransactionHistorySortFilterModel.cpp
Normal file
6
src/model/TransactionHistorySortFilterModel.cpp
Normal file
|
@ -0,0 +1,6 @@
|
|||
#include "TransactionHistorySortFiltrerModel.h"
|
||||
|
||||
TransactionHistorySortFiltrerModel::TransactionHistorySortFiltrerModel()
|
||||
{
|
||||
|
||||
}
|
12
src/model/TransactionHistorySortFilterModel.h
Normal file
12
src/model/TransactionHistorySortFilterModel.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
#ifndef TRANSACTIONHISTORYSORTFILTRERMODEL_H
|
||||
#define TRANSACTIONHISTORYSORTFILTRERMODEL_H
|
||||
|
||||
#include <QObject>
|
||||
|
||||
class TransactionHistorySortFiltrerModel : public QSortFilterProxyModel
|
||||
{
|
||||
public:
|
||||
TransactionHistorySortFiltrerModel();
|
||||
};
|
||||
|
||||
#endif // TRANSACTIONHISTORYSORTFILTRERMODEL_H
|
Loading…
Reference in a new issue