osrm-backend/include/server/api/parsed_url.hpp
2025-02-06 15:50:40 +01:00

23 lines
347 B
C++

#ifndef SERVER_API_PARSED_URL_HPP
#define SERVER_API_PARSED_URL_HPP
#include "util/coordinate.hpp"
#include <string>
namespace osrm::server::api
{
struct ParsedURL final
{
std::string service;
unsigned version;
std::string profile;
std::string query;
std::size_t prefix_length;
};
} // namespace osrm::server::api
#endif