blob: e5bcb35e20ebef0e86c68b8553b6495c95f6b40b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "object-id.hpp"
template<class DATATYPE, class ELEMTYPE, int NUMDIMS,
class ELEMTYPEREAL = ELEMTYPE, int TMAXNODES = 8, int TMINNODES = TMAXNODES / 2>
class RTree;
namespace floormat {
using Chunk_RTree = ::RTree<object_id, float, 2, float>;
} // namespace floormat
|