Files
qmsgpack/main.cpp
2014-09-07 22:24:14 +04:00

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("fffeece1e0"));
return a.exec();
}