iterator_decl.hpp 633 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // MessagePack for C++ static resolution routine
  3. //
  4. // Copyright (C) 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_ITERATOR_DECL_HPP
  11. #define MSGPACK_V3_ITERATOR_DECL_HPP
  12. #if !defined(MSGPACK_USE_CPP03)
  13. #include <msgpack/v2/iterator_decl.hpp>
  14. namespace msgpack {
  15. /// @cond
  16. MSGPACK_API_VERSION_NAMESPACE(v3) {
  17. /// @endcond
  18. using v2::begin;
  19. using v2::end;
  20. /// @cond
  21. }
  22. /// @endcond
  23. }
  24. #endif // !defined(MSGPACK_USE_CPP03)
  25. #endif // MSGPACK_V3_ITERATOR_DECL_HPP