blob: e558efc48656a30e381f34b3f6a0c64379d8d1e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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;
};
|