| 1 | // |
|---|---|
| 2 | // Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.com) |
| 3 | // |
| 4 | // Distributed under the Boost Software License, Version 1.0. (See accompanying |
| 5 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
| 6 | // |
| 7 | // Official repository: https://github.com/boostorg/url |
| 8 | // |
| 9 | |
| 10 | #ifndef BOOST_URL_IMPL_ENCONDING_OPTS_IPP |
| 11 | #define BOOST_URL_IMPL_ENCONDING_OPTS_IPP |
| 12 | |
| 13 | #include <boost/url/detail/config.hpp> |
| 14 | #include <boost/url/encoding_opts.hpp> |
| 15 | |
| 16 | namespace boost { |
| 17 | namespace urls { |
| 18 | |
| 19 | encoding_opts:: |
| 20 | encoding_opts( |
| 21 | bool space_as_plus_, |
| 22 | bool lower_case_, |
| 23 | bool disallow_null_) noexcept |
| 24 | : space_as_plus(space_as_plus_) |
| 25 | , lower_case(lower_case_) |
| 26 | , disallow_null(disallow_null_) |
| 27 | {} |
| 28 | |
| 29 | } // urls |
| 30 | } // boost |
| 31 | |
| 32 | #endif |
| 33 |
