diff --git a/vcg/space/index/base.h b/vcg/space/index/base.h index 518da306..a453ad4e 100644 --- a/vcg/space/index/base.h +++ b/vcg/space/index/base.h @@ -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.