osrm-backend/include/engine/guidance/route.hpp

22 lines
188 B
C++
Raw Normal View History

2016-01-28 10:28:44 -05:00
#ifndef ROUTE_HPP
#define ROUTE_HPP
2016-03-03 08:26:13 -05:00
namespace osrm
{
namespace engine
{
namespace guidance
{
2016-01-28 10:28:44 -05:00
struct Route
{
double distance;
2017-01-26 11:28:27 -05:00
double duration;
double weight;
2016-01-28 10:28:44 -05:00
};
}
}
}
#endif