1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-05 15:40:10 +00:00
OpenMW/apps/opencs/model/world/landtexturetableproxymodel.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
533 B
C++
Raw Normal View History

2017-10-02 15:56:22 -04:00
#ifndef CSM_WORLD_LANDTEXTURETABLEPROXYMODEL_H
#define CSM_WORLD_LANDTEXTURETABLEPROXYMODEL_H
#include "idtableproxymodel.hpp"
2022-10-19 19:02:00 +02:00
class QModelIndex;
class QObject;
2017-10-02 15:56:22 -04:00
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