mirror of
https://github.com/boostorg/json.git
synced 2025-05-10 09:43:52 +00:00
30 lines
885 B
C++
30 lines
885 B
C++
//
|
|
// Copyright (c) 2016-2019 Vinnie Falco (vinnie dot falco at gmail dot 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/vinniefalco/json
|
|
//
|
|
|
|
#ifndef BOOST_JSON_HPP
|
|
#define BOOST_JSON_HPP
|
|
|
|
#include <boost/json/array.hpp>
|
|
#include <boost/json/assign_string.hpp>
|
|
#include <boost/json/assign_vector.hpp>
|
|
#include <boost/json/basic_parser.hpp>
|
|
#include <boost/json/error.hpp>
|
|
#include <boost/json/fixed_storage.hpp>
|
|
#include <boost/json/ieee_decimal.hpp>
|
|
#include <boost/json/kind.hpp>
|
|
#include <boost/json/number.hpp>
|
|
#include <boost/json/object.hpp>
|
|
#include <boost/json/parser.hpp>
|
|
#include <boost/json/serializer.hpp>
|
|
#include <boost/json/storage.hpp>
|
|
#include <boost/json/string.hpp>
|
|
#include <boost/json/value.hpp>
|
|
|
|
#endif
|