msgpack.hpp 648 B

12345678910111213141516171819202122
  1. //
  2. // MessagePack for C++
  3. //
  4. // Copyright (C) 2008-2009 FURUHASHI Sadayuki
  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. #include "msgpack/object.hpp"
  11. #include "msgpack/iterator.hpp"
  12. #include "msgpack/zone.hpp"
  13. #include "msgpack/pack.hpp"
  14. #include "msgpack/null_visitor.hpp"
  15. #include "msgpack/parse.hpp"
  16. #include "msgpack/unpack.hpp"
  17. #include "msgpack/x3_parse.hpp"
  18. #include "msgpack/x3_unpack.hpp"
  19. #include "msgpack/sbuffer.hpp"
  20. #include "msgpack/vrefbuffer.hpp"
  21. #include "msgpack/version.hpp"
  22. #include "msgpack/type.hpp"