mirror of
https://github.com/romixlab/qmsgpack.git
synced 2026-02-06 15:25:03 +01:00
13 lines
181 B
C++
13 lines
181 B
C++
#ifndef MSGPACK_H
|
|
#define MSGPACK_H
|
|
#include <QByteArray>
|
|
#include <QVariantList>
|
|
|
|
namespace MsgPack
|
|
{
|
|
|
|
QVariantList deserialize(const QByteArray &data);
|
|
}
|
|
|
|
#endif // MSGPACK_H
|