Leaf.cc | Leaf.cc | |||
---|---|---|---|---|
skipping to change at line 24 | skipping to change at line 24 | |||
// | // | |||
// You should have received a copy of the GNU Lesser General Public | // You should have received a copy of the GNU Lesser General Public | |||
// License along with this library; if not, write to the Free Software | // License along with this library; if not, write to the Free Software | |||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A | // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A | |||
// | // | |||
// Email: | // Email: | |||
// mhadji@gmail.com | // mhadji@gmail.com | |||
#include <cstring> | #include <cstring> | |||
#include "../spatialindex/SpatialIndexImpl.h" | #include <spatialindex/SpatialIndex.h> | |||
#include "TPRTree.h" | #include "TPRTree.h" | |||
#include "Node.h" | #include "Node.h" | |||
#include "Index.h" | #include "Index.h" | |||
#include "Leaf.h" | #include "Leaf.h" | |||
using namespace SpatialIndex; | ||||
using namespace SpatialIndex::TPRTree; | using namespace SpatialIndex::TPRTree; | |||
Leaf::~Leaf() | Leaf::~Leaf() | |||
{ | { | |||
} | } | |||
Leaf::Leaf(SpatialIndex::TPRTree::TPRTree* pTree, id_type id) | Leaf::Leaf(SpatialIndex::TPRTree::TPRTree* pTree, id_type id) | |||
: Node(pTree, id, 0, pTree->m_leafCapacity) | : Node(pTree, id, 0, pTree->m_leafCapacity) | |||
{ | { | |||
} | } | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 3 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ |