24 lines
		
	
	
		
			365 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			365 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef SERVER_API_PARSED_URL_HPP
 | |
| #define SERVER_API_PARSED_URL_HPP
 | |
| 
 | |
| #include "util/coordinate.hpp"
 | |
| 
 | |
| #include <string>
 | |
| #include <vector>
 | |
| 
 | |
| 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
 |