summaryrefslogtreecommitdiff
path: root/graphics/asymptote/LspCpp/network/uri/detail/uri_parse.hpp
blob: 73835c3656e18f0f9c2d3a5c3913b73badc4852b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2013-2016 Glyn Matthews.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)

#ifndef NETWORK_DETAIL_URI_PARSE_INC
#define NETWORK_DETAIL_URI_PARSE_INC

#include <network/string_view.hpp>

namespace network {
namespace detail {
struct uri_parts;

bool parse(string_view::const_iterator &first, string_view::const_iterator last, uri_parts &parts);
}  // namespace detail
}  // namespace network

#endif  // NETWORK_DETAIL_URI_PARSE_INC