Line data Source code
1 : // 2 : // Copyright (c) 2021 Vinnie Falco (vinnie.falco@gmail.com) 3 : // 4 : // Distributed under the Boost Software License, Version 1.0. (See accompanying 5 : // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 : // 7 : // Official repository: https://github.com/CPPAlliance/http_proto 8 : // 9 : 10 : #ifndef BOOST_HTTP_PROTO_RFC_IMPL_PARAMETER_IPP 11 : #define BOOST_HTTP_PROTO_RFC_IMPL_PARAMETER_IPP 12 : 13 : #include <boost/http_proto/rfc/parameter.hpp> 14 : #include <boost/url/grammar/parse.hpp> 15 : 16 : namespace boost { 17 : namespace http_proto { 18 : 19 : auto 20 0 : parameter_rule_t:: 21 : parse( 22 : char const*& it, 23 : char const* end) const noexcept -> 24 : system::result<value_type> 25 : { 26 : (void)it; 27 : (void)end; 28 0 : return system::error_code{}; 29 : } 30 : 31 : } // http_proto 32 : } // boost 33 : 34 : #endif