| 31 | }; |
| 32 | |
| 33 | class NodeLessThan |
| 34 | { |
| 35 | public: |
| 36 | NodeLessThan(int nColumn, Qt::SortOrder fOrder) : |
| 37 | column(nColumn), order(fOrder) {} |
| 38 | bool operator()(const CNodeCombinedStats &left, const CNodeCombinedStats &right) const; |
| 39 | |
| 40 | private: |
| 41 | int column; |
| 42 | Qt::SortOrder order; |
| 43 | }; |
| 44 | |
| 45 | /** |
| 46 | Qt model providing information about connected peers, similar to the |