12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #ifndef BOOST_URL_PARSE_PARAMS_HPP
- #define BOOST_URL_PARSE_PARAMS_HPP
- #include <boost/url/detail/config.hpp>
- #include <boost/url/error_types.hpp>
- #include <boost/url/params_encoded_view.hpp>
- #include <boost/core/detail/string_view.hpp>
- namespace boost {
- namespace urls {
- BOOST_URL_DECL
- system::result<params_encoded_view>
- parse_query(core::string_view s) noexcept;
- }
- }
- #endif
|