Blame view

3rdparty/boost_1_81_0/boost/json/src.hpp 1.75 KB
63e88f80   Hu Chunming   提交三方库
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
  //
  // 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/boostorg/json
  //
  
  #ifndef BOOST_JSON_SRC_HPP
  #define BOOST_JSON_SRC_HPP
  
  /*
  
  This file is meant to be included once,
  in a translation unit of the program.
  
  */
  
  #ifndef BOOST_JSON_SOURCE
  #define BOOST_JSON_SOURCE
  #endif
  
  // We include this in case someone is using
  // src.hpp as their main JSON header file
  // https://github.com/boostorg/json/issues/223#issuecomment-689264149
  #include <boost/json.hpp>
  
  #include <boost/json/detail/config.hpp>
  
  #include <boost/json/impl/array.ipp>
  #include <boost/json/impl/error.ipp>
  #include <boost/json/impl/kind.ipp>
  #include <boost/json/impl/monotonic_resource.ipp>
  #include <boost/json/impl/null_resource.ipp>
  #include <boost/json/impl/object.ipp>
  #include <boost/json/impl/parse.ipp>
  #include <boost/json/impl/parser.ipp>
  #include <boost/json/impl/pointer.ipp>
  #include <boost/json/impl/serialize.ipp>
  #include <boost/json/impl/serializer.ipp>
  #include <boost/json/impl/static_resource.ipp>
  #include <boost/json/impl/stream_parser.ipp>
  #include <boost/json/impl/string.ipp>
  #include <boost/json/impl/value.ipp>
  #include <boost/json/impl/value_stack.ipp>
  #include <boost/json/impl/value_ref.ipp>
  
  #include <boost/json/detail/impl/shared_resource.ipp>
  #include <boost/json/detail/impl/default_resource.ipp>
  #include <boost/json/detail/impl/except.ipp>
  #include <boost/json/detail/impl/format.ipp>
  #include <boost/json/detail/impl/handler.ipp>
  #include <boost/json/detail/impl/stack.ipp>
  #include <boost/json/detail/impl/string_impl.ipp>
  
  #include <boost/json/detail/ryu/impl/d2s.ipp>
  
  #endif