123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- #ifndef BOOST_URL_ENCODING_OPTS_HPP
- #define BOOST_URL_ENCODING_OPTS_HPP
- #include <boost/url/detail/config.hpp>
- namespace boost {
- namespace urls {
- struct BOOST_URL_DECL encoding_opts
- {
-
- bool space_as_plus = false;
-
- bool lower_case = false;
-
- bool disallow_null = false;
- #ifndef BOOST_URL_DOCS
- encoding_opts(
- bool space_as_plus_ = false,
- bool lower_case_ = false,
- bool disallow_null_ = false) noexcept;
- #endif
- };
- }
- }
- #endif
|