b82eb5873e
git-subtree-dir: depends/groupview git-subtree-mainline:a17caba2c9
git-subtree-split:946d49675c
15 lines
253 B
C++
15 lines
253 B
C++
#pragma once
|
|
|
|
#include <QSortFilterProxyModel>
|
|
|
|
class GroupedProxyModel : public QSortFilterProxyModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GroupedProxyModel(QObject *parent = 0);
|
|
|
|
protected:
|
|
bool lessThan(const QModelIndex &left, const QModelIndex &right) const;
|
|
};
|