osrm-backend/include/engine/guidance/route.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

22 lines
248 B
C++

#ifndef ROUTE_HPP
#define ROUTE_HPP
namespace osrm
{
namespace engine
{
namespace guidance
{
struct Route
{
double distance;
double duration;
double weight;
};
} // namespace guidance
} // namespace engine
} // namespace osrm
#endif