mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 16:49:55 +00:00
22 lines
521 B
C++
22 lines
521 B
C++
#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
|