osrm-backend/include/engine/guidance/route_leg.hpp
Daniel Patterson 50d9632ed7
Upgrade formatting to clang-format 10 (#5895)
* Update formatting tools to clang-format-10

* Reformat using clang-format-10.0.09
2020-11-26 07:21:39 -08:00

31 lines
429 B
C++

#ifndef ROUTE_LEG_HPP
#define ROUTE_LEG_HPP
#include "engine/guidance/route_step.hpp"
#include <boost/optional.hpp>
#include <string>
#include <vector>
namespace osrm
{
namespace engine
{
namespace guidance
{
struct RouteLeg
{
double distance;
double duration;
double weight;
std::string summary;
std::vector<RouteStep> steps;
};
} // namespace guidance
} // namespace engine
} // namespace osrm
#endif