| Line | Branch | Exec | Source |
|---|---|---|---|
| 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 | |||
| 11 | #include <boost/url/detail/config.hpp> | ||
| 12 | #include <boost/url/encoding_opts.hpp> | ||
| 13 | |||
| 14 | namespace boost { | ||
| 15 | namespace urls { | ||
| 16 | |||
| 17 | 7794 | encoding_opts:: | |
| 18 | encoding_opts( | ||
| 19 | bool space_as_plus_, | ||
| 20 | bool lower_case_, | ||
| 21 | 7794 | bool disallow_null_) noexcept | |
| 22 | 7794 | : space_as_plus(space_as_plus_) | |
| 23 | 7794 | , lower_case(lower_case_) | |
| 24 | 7794 | , disallow_null(disallow_null_) | |
| 25 | 7794 | {} | |
| 26 | |||
| 27 | } // urls | ||
| 28 | } // boost | ||
| 29 | |||
| 30 |