osrm-backend/include/extractor/guidance/discrete_angle.hpp
2016-04-05 22:58:32 +02:00

20 lines
335 B
C++

#ifndef OSRM_EXTRACTOR_GUIDANCE_DISCRETE_ANGLE
#define OSRM_EXTRACTOR_GUIDANCE_DISCRETE_ANGLE
#include <cstdint>
namespace osrm
{
namespace extractor
{
namespace guidance
{
using DiscreteAngle = std::uint8_t;
} // namespace guidance
} // namespace extractor
} // namespace osrm
#endif /* OSRM_EXTRACTOR_GUIDANCE_DISCRETE_ANGLE */