2017-09-25 09:37:11 -04:00
|
|
|
#ifndef OSRM_EXTRACTOR_EDGE_BASED_NODE_HPP_
|
|
|
|
#define OSRM_EXTRACTOR_EDGE_BASED_NODE_HPP_
|
|
|
|
|
|
|
|
#include "util/typedefs.hpp"
|
|
|
|
|
2022-12-11 04:10:26 -05:00
|
|
|
namespace osrm::extractor
|
2017-09-25 09:37:11 -04:00
|
|
|
{
|
|
|
|
|
|
|
|
struct EdgeBasedNode
|
|
|
|
{
|
|
|
|
GeometryID geometry_id;
|
|
|
|
ComponentID component_id;
|
2017-11-13 05:42:28 -05:00
|
|
|
std::uint32_t annotation_id : 31;
|
|
|
|
std::uint32_t segregated : 1;
|
2017-09-25 09:37:11 -04:00
|
|
|
};
|
|
|
|
|
2022-12-20 12:00:11 -05:00
|
|
|
} // namespace osrm::extractor
|
2017-09-25 09:37:11 -04:00
|
|
|
|
|
|
|
#endif // OSRM_EXTRACTOR_EDGE_BASED_NODE_HPP_
|