123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- #ifndef BOOST_URL_SEGMENTS_VIEW_HPP
- #define BOOST_URL_SEGMENTS_VIEW_HPP
- #include <boost/url/detail/config.hpp>
- #include <boost/url/segments_base.hpp>
- #include <boost/core/detail/string_view.hpp>
- namespace boost {
- namespace urls {
- class segments_view
- : public segments_base
- {
- friend class url_view_base;
- friend class segments_encoded_view;
- friend class segments_ref;
- segments_view(
- detail::path_ref const& ref) noexcept;
- public:
-
- segments_view() = default;
-
- segments_view(
- segments_view const& other) = default;
-
- BOOST_URL_DECL
- segments_view(
- core::string_view s);
-
- segments_view&
- operator=(segments_view const& other) = default;
- };
- }
- }
- #endif
|