mirror of
https://github.com/lubosz/overte.git
synced 2025-08-07 18:21:16 +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>;
|
using SpatiallyNestablePointer = std::shared_ptr<SpatiallyNestable>;
|
||||||
class SpatialParentTree {
|
class SpatialParentTree {
|
||||||
public:
|
public:
|
||||||
virtual SpatiallyNestablePointer findByID(const QUuid& id) const { return nullptr; }
|
virtual SpatiallyNestablePointer findByID(const QUuid& id) const = 0;
|
||||||
};
|
};
|
||||||
class SpatialParentFinder : public Dependency {
|
class SpatialParentFinder : public Dependency {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue