src.hpp 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.com)
  3. //
  4. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. // Official repository: https://github.com/boostorg/json
  8. //
  9. #ifndef BOOST_JSON_SRC_HPP
  10. #define BOOST_JSON_SRC_HPP
  11. /*
  12. This file is meant to be included once,
  13. in a translation unit of the program.
  14. */
  15. #ifndef BOOST_JSON_SOURCE
  16. #define BOOST_JSON_SOURCE
  17. #endif
  18. // We include this in case someone is using
  19. // src.hpp as their main JSON header file
  20. // https://github.com/boostorg/json/issues/223#issuecomment-689264149
  21. #include <boost/json.hpp>
  22. #include <boost/json/detail/config.hpp>
  23. #include <boost/json/impl/array.ipp>
  24. #include <boost/json/impl/error.ipp>
  25. #include <boost/json/impl/kind.ipp>
  26. #include <boost/json/impl/monotonic_resource.ipp>
  27. #include <boost/json/impl/null_resource.ipp>
  28. #include <boost/json/impl/object.ipp>
  29. #include <boost/json/impl/parse.ipp>
  30. #include <boost/json/impl/parser.ipp>
  31. #include <boost/json/impl/serialize.ipp>
  32. #include <boost/json/impl/serializer.ipp>
  33. #include <boost/json/impl/static_resource.ipp>
  34. #include <boost/json/impl/stream_parser.ipp>
  35. #include <boost/json/impl/string.ipp>
  36. #include <boost/json/impl/value.ipp>
  37. #include <boost/json/impl/value_stack.ipp>
  38. #include <boost/json/impl/value_ref.ipp>
  39. #include <boost/json/detail/impl/shared_resource.ipp>
  40. #include <boost/json/detail/impl/default_resource.ipp>
  41. #include <boost/json/detail/impl/except.ipp>
  42. #include <boost/json/detail/impl/format.ipp>
  43. #include <boost/json/detail/impl/handler.ipp>
  44. #include <boost/json/detail/impl/stack.ipp>
  45. #include <boost/json/detail/impl/string_impl.ipp>
  46. #include <boost/json/detail/ryu/impl/d2s.ipp>
  47. #endif