osrm-backend/include/extractor/packed_osm_ids.hpp

20 lines
520 B
C++
Raw Normal View History

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"
namespace osrm::extractor
2017-04-11 18:27:43 -04:00
{
namespace detail
{
template <storage::Ownership Ownership>
using PackedOSMIDs = util::detail::PackedVector<OSMNodeID, 34, Ownership>;
} // 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