openmw-tes3coop/components/fileorderlist/masterproxymodel.hpp

20 lines
378 B
C++
Raw Normal View History

2013-08-17 02:12:30 +00:00
#ifndef MASTERPROXYMODEL_HPP
#define MASTERPROXYMODEL_HPP
#include <QSortFilterProxyModel>
class MasterProxyModel : public QSortFilterProxyModel
{
Q_OBJECT
public:
explicit MasterProxyModel(QObject *parent = 0);
virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
signals:
public slots:
};
#endif // MASTERPROXYMODEL_HPP