| 25 | }; |
| 26 | |
| 27 | class BannedNodeLessThan |
| 28 | { |
| 29 | public: |
| 30 | BannedNodeLessThan(int nColumn, Qt::SortOrder fOrder) : |
| 31 | column(nColumn), order(fOrder) {} |
| 32 | bool operator()(const CCombinedBan& left, const CCombinedBan& right) const; |
| 33 | |
| 34 | private: |
| 35 | int column; |
| 36 | Qt::SortOrder order; |
| 37 | }; |
| 38 | |
| 39 | /** |
| 40 | Qt model providing information about connected peers, similar to the |