osrm-backend/include/extractor/extraction_node.hpp
2016-01-08 01:31:57 +01:00

20 lines
321 B
C++

#ifndef EXTRACTION_NODE_HPP
#define EXTRACTION_NODE_HPP
namespace osrm
{
namespace extractor
{
struct ExtractionNode
{
ExtractionNode() : traffic_lights(false), barrier(false) {}
void clear() { traffic_lights = barrier = false; }
bool traffic_lights;
bool barrier;
};
}
}
#endif // EXTRACTION_NODE_HPP