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