added method to know if a spatial indexing structure is empty or not
This commit is contained in:
parent
070c47b0a5
commit
8446d9f566
|
@ -95,6 +95,20 @@ public:
|
|||
(void)_oEnd;
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
Method Empty.
|
||||
Description:
|
||||
check if the spatial structure is empty.
|
||||
|
||||
Return Value:
|
||||
true if it is empty.
|
||||
**************************************************************************/
|
||||
|
||||
bool Empty() {
|
||||
assert(0); // this is a base interface.
|
||||
return true;
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
Method GetClosest.
|
||||
|
||||
|
|
Loading…
Reference in New Issue