mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 03:39:14 +00:00
24 lines
533 B
C++
24 lines
533 B
C++
#ifndef CSM_WORLD_LANDTEXTURETABLEPROXYMODEL_H
|
|
#define CSM_WORLD_LANDTEXTURETABLEPROXYMODEL_H
|
|
|
|
#include "idtableproxymodel.hpp"
|
|
|
|
class QModelIndex;
|
|
class QObject;
|
|
|
|
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
|