1 #ifndef OSMIUM_INDEX_NODE_LOCATIONS_MAP_HPP
2 #define OSMIUM_INDEX_NODE_LOCATIONS_MAP_HPP
38 #ifdef OSMIUM_HAS_INDEX_MAP_DENSE_FILE_ARRAY
42 #ifdef OSMIUM_HAS_INDEX_MAP_DENSE_MEM_ARRAY
46 #ifdef OSMIUM_HAS_INDEX_MAP_DENSE_MMAP_ARRAY
50 #ifdef OSMIUM_HAS_INDEX_MAP_SPARSE_FILE_ARRAY
54 #ifdef OSMIUM_HAS_INDEX_MAP_SPARSE_MEM_ARRAY
58 #ifdef OSMIUM_HAS_INDEX_MAP_SPARSE_MEM_MAP
62 #ifdef OSMIUM_HAS_INDEX_MAP_SPARSE_MEM_TABLE
66 #ifdef OSMIUM_HAS_INDEX_MAP_SPARSE_MMAP_ARRAY
70 #endif // OSMIUM_INDEX_NODE_LOCATIONS_MAP_HPP
Definition: sparse_mem_map.hpp:60
uint64_t unsigned_object_id_type
Type for OSM object (node, way, or relation) IDs where we only allow positive IDs.
Definition: types.hpp:46
#define REGISTER_MAP(id, value, klass, name)
Definition: map.hpp:256
VectorBasedSparseMap< TId, TValue, osmium::detail::mmap_vector_file > SparseFileArray
Definition: sparse_file_array.hpp:52
VectorBasedSparseMap< TId, TValue, osmium::detail::mmap_vector_anon > SparseMmapArray
Definition: sparse_mmap_array.hpp:50
VectorBasedSparseMap< TId, TValue, StdVectorWrap > SparseMemArray
Definition: sparse_mem_array.hpp:52
VectorBasedDenseMap< std::vector< TValue >, TId, TValue > DenseMemArray
Definition: dense_mem_array.hpp:49
Definition: location.hpp:79
VectorBasedDenseMap< osmium::detail::mmap_vector_file< TValue >, TId, TValue > DenseFileArray
Definition: dense_file_array.hpp:52
VectorBasedDenseMap< osmium::detail::mmap_vector_anon< TValue >, TId, TValue > DenseMmapArray
Definition: dense_mmap_array.hpp:50