| 600 | #endif |
| 601 | |
| 602 | struct ParsedRoutingData |
| 603 | { |
| 604 | ParsedRoutingData(std::vector<url_scheme::RoutePoint> const & points, routing::RouterType type) |
| 605 | : m_points(points) |
| 606 | , m_type(type) |
| 607 | {} |
| 608 | std::vector<url_scheme::RoutePoint> m_points; |
| 609 | routing::RouterType m_type; |
| 610 | }; |
| 611 | |
| 612 | ParsedRoutingData GetParsedRoutingData() const; |
| 613 | url_scheme::SearchRequest GetParsedSearchRequest() const; |
no outgoing calls
no test coverage detected