forked from mirror/openmw-tes3mp
19 lines
452 B
C++
19 lines
452 B
C++
#ifndef PLUGINSPROXYMODEL_HPP
|
|
#define PLUGINSPROXYMODEL_HPP
|
|
|
|
#include <QSortFilterProxyModel>
|
|
|
|
class QVariant;
|
|
class QAbstractTableModel;
|
|
|
|
class PluginsProxyModel : public QSortFilterProxyModel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit PluginsProxyModel(QObject *parent = 0, QAbstractTableModel *model = 0);
|
|
~PluginsProxyModel();
|
|
|
|
virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
|
|
};
|
|
|
|
#endif // PLUGINSPROXYMODEL_HPP
|