123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #ifndef BOOST_JSON_SET_POINTER_OPTIONS_HPP
- #define BOOST_JSON_SET_POINTER_OPTIONS_HPP
- #include <boost/json/detail/config.hpp>
- namespace boost {
- namespace json {
- struct set_pointer_options
- {
-
- bool create_arrays = true;
-
- bool create_objects = true;
-
- bool replace_any_scalar = false;
-
- std::size_t max_created_elements = 1;
- };
- }
- }
- #endif
|