osrm-backend/include/extractor/edge_based_node.hpp

20 lines
372 B
C++
Raw Normal View History

#ifndef OSRM_EXTRACTOR_EDGE_BASED_NODE_HPP_
#define OSRM_EXTRACTOR_EDGE_BASED_NODE_HPP_
#include "util/typedefs.hpp"
namespace osrm::extractor
{
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;
};
} // namespace osrm
#endif // OSRM_EXTRACTOR_EDGE_BASED_NODE_HPP_