#ifndef MSGPACK_H #define MSGPACK_H #include #include #include "msgpack_common.h" namespace MsgPack { QVariant unpack(const QByteArray &data); QByteArray pack(const QVariant &variant); bool registerPacker(QMetaType::Type qType, qint8 msgpackType, pack_user_f packer); } #endif // MSGPACK_H