sbuffer_decl.hpp 708 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // MessagePack for C++ simple buffer implementation
  3. //
  4. // Copyright (C) 2008-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_SBUFFER_DECL_HPP
  11. #define MSGPACK_V1_SBUFFER_DECL_HPP
  12. #include "msgpack/versioning.hpp"
  13. #ifndef MSGPACK_SBUFFER_INIT_SIZE
  14. #define MSGPACK_SBUFFER_INIT_SIZE 8192
  15. #endif
  16. namespace msgpack {
  17. /// @cond
  18. MSGPACK_API_VERSION_NAMESPACE(v1) {
  19. /// @endcond
  20. class sbuffer;
  21. /// @cond
  22. } // MSGPACK_API_VERSION_NAMESPACE(v1)
  23. /// @endcond
  24. } // namespace msgpack
  25. #endif // MSGPACK_V1_SBUFFER_DECL_HPP