osrm-backend/include/extractor/guidance/discrete_angle.hpp

20 lines
335 B
C++
Raw Normal View History

2016-03-01 16:30:31 -05:00
#ifndef OSRM_EXTRACTOR_GUIDANCE_DISCRETE_ANGLE
#define OSRM_EXTRACTOR_GUIDANCE_DISCRETE_ANGLE
#include <cstdint>
2016-03-01 16:30:31 -05:00
namespace osrm
{
namespace extractor
{
namespace guidance
{
using DiscreteAngle = std::uint8_t;
2016-03-01 16:30:31 -05:00
} // namespace guidance
} // namespace extractor
} // namespace osrm
#endif /* OSRM_EXTRACTOR_GUIDANCE_DISCRETE_ANGLE */