mirror of
https://github.com/lubosz/overte.git
synced 2025-04-24 21:23:18 +02:00
make SpatialParentFinder base class pure virtual
This commit is contained in:
parent
3155ffe07e
commit
aef8ac6bf0
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ using SpatiallyNestableWeakPointer = std::weak_ptr<SpatiallyNestable>;
|
|||
using SpatiallyNestablePointer = std::shared_ptr<SpatiallyNestable>;
|
||||
class SpatialParentTree {
|
||||
public:
|
||||
virtual SpatiallyNestablePointer findByID(const QUuid& id) const { return nullptr; }
|
||||
virtual SpatiallyNestablePointer findByID(const QUuid& id) const = 0;
|
||||
};
|
||||
class SpatialParentFinder : public Dependency {
|
||||
|
||||
|
|
Loading…
Reference in a new issue