fwd.hpp 597 B

123456789101112131415161718192021222324252627282930313233
  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_FWD_HPP
  10. #define BOOST_JSON_FWD_HPP
  11. #include <boost/json/detail/config.hpp>
  12. BOOST_JSON_NS_BEGIN
  13. // Forward declarations for value types
  14. #ifndef BOOST_JSON_DOCS
  15. class array;
  16. class object;
  17. class string;
  18. class value;
  19. class key_value_pair;
  20. class storage_ptr;
  21. #endif
  22. BOOST_JSON_NS_END
  23. #endif