mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-05-02 23:54:34 +02:00

git-subtree-dir: depends/groupview git-subtree-mainline: a17caba2c9c2aa5960581db01e4b66472a9c019c git-subtree-split: 946d49675cb4725c31ab49a51f3bcae302f89a19
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;
|
|
};
|