osrm-backend/include/server/api/parsed_url.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

30 lines
415 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 final
{
std::string service;
unsigned version;
std::string profile;
std::string query;
std::size_t prefix_length;
};
} // namespace api
} // namespace server
} // namespace osrm
#endif