openmw-tes3coop/components/esxselector/model/masterproxymodel.hpp

24 lines
488 B
C++
Raw Normal View History

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