12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #ifndef BOOST_JSON_SERIALIZE_OPTIONS_HPP
- #define BOOST_JSON_SERIALIZE_OPTIONS_HPP
- #include <boost/json/detail/config.hpp>
- #include <iosfwd>
- namespace boost {
- namespace json {
- struct serialize_options
- {
-
- bool allow_infinity_and_nan = false;
-
- BOOST_JSON_DECL
- friend
- std::ostream&
- operator<<( std::ostream& os, serialize_options const& opts );
- };
- }
- }
- #endif
|