| 9 | namespace EE { namespace UI { namespace Models { |
| 10 | |
| 11 | SortingProxyModel::SortingProxyModel( std::shared_ptr<Model> target ) : |
| 12 | mSource( target ), mKeyColumn( -1 ) { |
| 13 | mSource->registerClient( this ); |
| 14 | invalidate(); |
| 15 | } |
| 16 | |
| 17 | SortingProxyModel::~SortingProxyModel() { |
| 18 | mSource->unregisterClient( this ); |
nothing calls this directly
no test coverage detected