mirror of
https://github.com/romixlab/qmsgpack.git
synced 2026-02-05 14:55:25 +01:00
18 lines
299 B
C++
18 lines
299 B
C++
#include <QCoreApplication>
|
|
#include <msgpack.h>
|
|
#include <QDebug>
|
|
|
|
void test(quint8 *p) {
|
|
p++;
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QCoreApplication a(argc, argv);
|
|
|
|
qDebug() << "MsgPack";
|
|
qDebug() << MsgPack::deserialize(QByteArray::fromHex("c403010203"));
|
|
|
|
return a.exec();
|
|
}
|