1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- #ifndef BOOST_URL_RFC_ABSOLUTE_URI_RULE_HPP
- #define BOOST_URL_RFC_ABSOLUTE_URI_RULE_HPP
- #include <boost/url/detail/config.hpp>
- #include <boost/url/error_types.hpp>
- #include <boost/url/url_view.hpp>
- namespace boost {
- namespace urls {
- #ifdef BOOST_URL_DOCS
- constexpr __implementation_defined__ absolute_uri_rule;
- #else
- struct absolute_uri_rule_t
- {
- using value_type = url_view;
- BOOST_URL_DECL
- auto
- parse(
- char const*& it,
- char const* end
- ) const noexcept ->
- system::result<value_type>;
- };
- constexpr absolute_uri_rule_t absolute_uri_rule{};
- #endif
- }
- }
- #endif
|