osrm-backend/include/extractor/extraction_node.hpp

20 lines
362 B
C++
Raw Normal View History

#ifndef EXTRACTION_NODE_HPP
#define EXTRACTION_NODE_HPP
2014-08-26 11:02:05 -04:00
2016-01-05 10:51:13 -05:00
namespace osrm
{
namespace extractor
{
2014-08-26 11:02:05 -04:00
struct ExtractionNode
{
2015-01-22 06:19:11 -05:00
ExtractionNode() : traffic_lights(false), barrier(false) {}
void clear() { traffic_lights = barrier = false; }
2014-08-26 11:02:05 -04:00
bool traffic_lights;
bool barrier;
};
} // namespace extractor
} // namespace osrm
2016-01-05 10:51:13 -05:00
#endif // EXTRACTION_NODE_HPP