C++ library for serializing and deserializing data in MessagePack format.
MessagePack implementation for C++ / msgpack.org[C++]
$ # Include in C++ project: #include <msgpack.hpp>$ msgpack::object_handle oh = msgpack::unpack(buffer, size);$ msgpack::sbuffer buffer; msgpack::pack(buffer, my_data);$ # Use msgpack-cxx to create language-agnostic binary format$ # MessagePack produces smaller binary than JSON or XML