meta_decl.hpp 858 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // MessagePack for C++ static resolution routine
  3. //
  4. // Copyright (C) 2015-2018 KONDO Takatoshi
  5. //
  6. // Distributed under the Boost Software License, Version 1.0.
  7. // (See accompanying file LICENSE_1_0.txt or copy at
  8. // http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef MSGPACK_V3_META_DECL_HPP
  11. #define MSGPACK_V3_META_DECL_HPP
  12. #if !defined(MSGPACK_USE_CPP03)
  13. #include "msgpack/v2/meta_decl.hpp"
  14. namespace msgpack {
  15. /// @cond
  16. MSGPACK_API_VERSION_NAMESPACE(v3) {
  17. /// @endcond
  18. namespace detail {
  19. using v2::detail::bool_pack;
  20. using v2::detail::all_of_imp;
  21. using v2::detail::any_of_imp;
  22. } // namespace detail
  23. using v2::all_of;
  24. using v2::any_of;
  25. using v2::seq;
  26. using v2::gen_seq;
  27. /// @cond
  28. } // MSGPACK_API_VERSION_NAMESPACE(v3)
  29. /// @endcond
  30. } // namespace msgpack
  31. #endif // !defined(MSGPACK_USE_CPP03)
  32. #endif // MSGPACK_V3_META_DECL_HPP