osrm-backend/include/server/api/parsed_url.hpp

30 lines
382 B
C++
Raw Normal View History

2016-01-28 10:28:44 -05:00
#ifndef SERVER_API_PARSED_URL_HPP
#define SERVER_API_PARSED_URL_HPP
#include "util/coordinate.hpp"
#include <string>
#include <vector>
namespace osrm
{
namespace server
{
namespace api
{
struct ParsedURL
{
std::string service;
unsigned version;
std::string profile;
std::vector<util::FixedPointCoordinate> coordinates;
std::string options;
};
}
}
}
#endif