2017-04-11 18:27:43 -04:00
|
|
|
#ifndef OSRM_EXTRACTOR_PACKED_OSM_IDS_HPP
|
|
|
|
#define OSRM_EXTRACTOR_PACKED_OSM_IDS_HPP
|
|
|
|
|
|
|
|
#include "util/packed_vector.hpp"
|
|
|
|
#include "util/typedefs.hpp"
|
|
|
|
|
2022-12-11 04:10:26 -05:00
|
|
|
namespace osrm::extractor
|
2017-04-11 18:27:43 -04:00
|
|
|
{
|
|
|
|
namespace detail
|
|
|
|
{
|
|
|
|
template <storage::Ownership Ownership>
|
2021-04-24 11:01:21 -04:00
|
|
|
using PackedOSMIDs = util::detail::PackedVector<OSMNodeID, 34, Ownership>;
|
2022-07-04 16:46:59 -04:00
|
|
|
} // namespace detail
|
2017-04-11 18:27:43 -04:00
|
|
|
|
|
|
|
using PackedOSMIDsView = detail::PackedOSMIDs<storage::Ownership::View>;
|
|
|
|
using PackedOSMIDs = detail::PackedOSMIDs<storage::Ownership::Container>;
|
2022-12-20 12:00:11 -05:00
|
|
|
} // namespace osrm::extractor
|
2017-04-11 18:27:43 -04:00
|
|
|
|
|
|
|
#endif
|