14 lines
337 B
C
14 lines
337 B
C
|
#include "groupview/GroupedProxyModel.h"
|
||
|
|
||
|
/**
|
||
|
* A proxy model that is responsible for sorting instances into groups
|
||
|
*/
|
||
|
class InstanceProxyModel : public GroupedProxyModel
|
||
|
{
|
||
|
public:
|
||
|
explicit InstanceProxyModel(QObject *parent = 0);
|
||
|
|
||
|
protected:
|
||
|
virtual bool subSortLessThan(const QModelIndex &left, const QModelIndex &right) const;
|
||
|
};
|