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