IndexType.hpp
1 #ifndef OPALS_INDEX_TYPE_HPP_INCLUDED
2 #define OPALS_INDEX_TYPE_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// TODO: Enumerator for what?
9  namespace IndexType
10  {
11  enum Type
12  {
13  tile , ///< flat tiling structure
14  quadtree , ///< quad- or octree structure (depending on index dimension)
15  kdtree , ///< kd-tree structure
16  rtree , ///< r-tree structure
17  Count ///< number of elements
18  };
19  }
20 }
21 
22 #endif