mirror of
https://github.com/romixlab/qmsgpack.git
synced 2026-02-08 16:15:36 +01:00
16 lines
333 B
C++
16 lines
333 B
C++
#ifndef MSGPACK_H
|
|
#define MSGPACK_H
|
|
#include <QByteArray>
|
|
#include <QVariantList>
|
|
#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
|