mirror of
https://github.com/boostorg/json.git
synced 2025-05-10 09:43:52 +00:00
* parser members do not throw * parse free functions are in parse.hpp fix #199. close #201
35 lines
977 B
C++
35 lines
977 B
C++
//
|
|
// Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.com)
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
// Official repository: https://github.com/cppalliance/json
|
|
//
|
|
|
|
#ifndef BOOST_JSON_HPP
|
|
#define BOOST_JSON_HPP
|
|
|
|
#include <boost/json/detail/config.hpp>
|
|
|
|
#include <boost/json/array.hpp>
|
|
#include <boost/json/error.hpp>
|
|
#include <boost/json/kind.hpp>
|
|
#include <boost/json/monotonic_resource.hpp>
|
|
#include <boost/json/number_cast.hpp>
|
|
#include <boost/json/object.hpp>
|
|
#include <boost/json/parse.hpp>
|
|
#include <boost/json/parser.hpp>
|
|
#include <boost/json/serializer.hpp>
|
|
#include <boost/json/storage_ptr.hpp>
|
|
#include <boost/json/string.hpp>
|
|
#include <boost/json/system_error.hpp>
|
|
#include <boost/json/value.hpp>
|
|
#include <boost/json/value_from.hpp>
|
|
#include <boost/json/value_to.hpp>
|
|
|
|
// Intentionally excluded
|
|
//#include <boost/json/basic_parser.hpp>
|
|
|
|
#endif
|