osrm-backend/include/server/api/parsed_url.hpp
2016-04-05 22:58:32 +02:00

28 lines
322 B
C++

#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::string query;
};
}
}
}
#endif