mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-22 16:23:53 +00:00
18 lines
393 B
C++
18 lines
393 B
C++
#ifndef PLUGINSPROXYMODEL_HPP
|
|
#define PLUGINSPROXYMODEL_HPP
|
|
|
|
#include <QSortFilterProxyModel>
|
|
|
|
class QVariant;
|
|
|
|
class PluginsProxyModel : public QSortFilterProxyModel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit PluginsProxyModel(QObject *parent = 0);
|
|
~PluginsProxyModel();
|
|
|
|
virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
|
|
};
|
|
|
|
#endif // PLUGINSPROXYMODEL_HPP
|