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.
23 lines
521 B
C++
23 lines
521 B
C++
7 years ago
|
#ifndef CSM_WORLD_LANDTEXTURETABLEPROXYMODEL_H
|
||
|
#define CSM_WORLD_LANDTEXTURETABLEPROXYMODEL_H
|
||
|
|
||
|
#include "idtableproxymodel.hpp"
|
||
|
|
||
|
namespace CSMWorld
|
||
|
{
|
||
|
/// \brief Removes base records from filtered results.
|
||
|
class LandTextureTableProxyModel : public IdTableProxyModel
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
|
||
|
LandTextureTableProxyModel(QObject* parent = nullptr);
|
||
|
|
||
|
protected:
|
||
|
|
||
|
bool filterAcceptsRow (int sourceRow, const QModelIndex& sourceParent) const override;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|