You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
389 B
C++
19 lines
389 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();
|
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
|
|
};
|
|
|
|
#endif // PLUGINSPROXYMODEL_HPP
|