/********************************************************************** * * GEOS - Geometry Engine Open Source * http://geos.osgeo.org * * Copyright (C) 2006 Refractions Research Inc. * * This is free software; you can redistribute and/or modify it under * the terms of the GNU Lesser General Public Licence as published * by the Free Software Foundation. * See the COPYING file for more information. * **********************************************************************/ #ifndef GEOS_INDEX_STRTREE_ABSTRACTNODE_H #define GEOS_INDEX_STRTREE_ABSTRACTNODE_H #include #include // for inheritance #include #ifdef _MSC_VER #pragma warning(push) #pragma warning(disable: 4251) // warning C4251: needs to have dll-interface to be used by clients of class #endif namespace geos { namespace index { // geos::index namespace strtree { // geos::index::strtree /** \brief * A node of the STR tree. * * The children of this node are either more nodes * (AbstractNodes) or real data (ItemBoundables). * * If this node contains real data (rather than nodes), * then we say that this node is a "leaf node". * */ class GEOS_DLL AbstractNode: public Boundable { private: std::vector childBoundables; int level; public: AbstractNode(int newLevel, int capacity=10); virtual ~AbstractNode(); // TODO: change signature to return by ref, // document ownership of the return inline std::vector* getChildBoundables() { return &childBoundables; } // TODO: change signature to return by ref, // document ownership of the return inline const std::vector* getChildBoundables() const { return &childBoundables; } /** * Returns a representation of space that encloses this Boundable, * preferably not much bigger than this Boundable's boundary yet fast to * test for intersection with the bounds of other Boundables. * The class of object returned depends on the subclass of * AbstractSTRtree. * * @return an Envelope (for STRtrees), an Interval (for SIRtrees), * or other object (for other subclasses of AbstractSTRtree) * * @see AbstractSTRtree::IntersectsOp */ const void* getBounds() const; int getLevel(); void addChildBoundable(Boundable *childBoundable); protected: virtual void* computeBounds() const=0; mutable void* bounds; }; } // namespace geos::index::strtree } // namespace geos::index } // namespace geos #ifdef _MSC_VER #pragma warning(pop) #endif #endif // GEOS_INDEX_STRTREE_ABSTRACTNODE_H