zbuffer_decl.hpp 609 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // MessagePack for C++ deflate buffer implementation
  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_ZBUFFER_DECL_HPP
  11. #define MSGPACK_V3_ZBUFFER_DECL_HPP
  12. #include "msgpack/v2/zbuffer_decl.hpp"
  13. namespace msgpack {
  14. /// @cond
  15. MSGPACK_API_VERSION_NAMESPACE(v3) {
  16. /// @endcond
  17. using v2::zbuffer;
  18. /// @cond
  19. } // MSGPACK_API_VERSION_NAMESPACE(v3)
  20. /// @endcond
  21. } // namespace msgpack
  22. #endif // MSGPACK_V3_ZBUFFER_DECL_HPP