Files
qmsgpack/msgpack.h
T

13 lines
177 B
C++
Raw Normal View History

2014-09-07 22:24:14 +04:00
#ifndef MSGPACK_H
#define MSGPACK_H
#include <QByteArray>
#include <QVariantList>
namespace MsgPack
{
2014-09-08 18:40:20 +04:00
QVariant deserialize(const QByteArray &data);
2014-09-07 22:24:14 +04:00
}
#endif // MSGPACK_H