zbuffer_decl.hpp 795 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // MessagePack for C++ deflate buffer implementation
  3. //
  4. // Copyright (C) 2010-2016 FURUHASHI Sadayuki and 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_V1_ZBUFFER_DECL_HPP
  11. #define MSGPACK_V1_ZBUFFER_DECL_HPP
  12. #include "msgpack/versioning.hpp"
  13. #ifndef MSGPACK_ZBUFFER_RESERVE_SIZE
  14. #define MSGPACK_ZBUFFER_RESERVE_SIZE 512
  15. #endif
  16. #ifndef MSGPACK_ZBUFFER_INIT_SIZE
  17. #define MSGPACK_ZBUFFER_INIT_SIZE 8192
  18. #endif
  19. namespace msgpack {
  20. /// @cond
  21. MSGPACK_API_VERSION_NAMESPACE(v1) {
  22. /// @endcond
  23. class zbuffer;
  24. /// @cond
  25. } // MSGPACK_API_VERSION_NAMESPACE(v1)
  26. /// @endcond
  27. } // namespace msgpack
  28. #endif // MSGPACK_V1_ZBUFFER_DECL_HPP