123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- #ifndef BOOST_URL_IGNORE_CASE_HPP
- #define BOOST_URL_IGNORE_CASE_HPP
- #include <boost/url/detail/config.hpp>
- namespace boost {
- namespace urls {
- #ifndef BOOST_URL_DOCS
- struct ignore_case_t
- {
- };
- #endif
- constexpr
- #ifdef BOOST_URL_DOCS
- __implementation_defined__
- #else
- ignore_case_t
- #endif
- ignore_case{};
- class ignore_case_param
- {
-
- bool value_ = false;
- public:
-
- constexpr
- ignore_case_param() noexcept = default;
-
- constexpr
- ignore_case_param(
- #ifdef BOOST_URL_DOCS
- __implementation_defined__
- #else
- ignore_case_t
- #endif
- ) noexcept
- : value_(true)
- {
- }
-
- operator
- bool() const noexcept
- {
- return value_;
- }
- };
- }
- }
- #endif
|