Merge pull request #6 from estan/include-fixes

Some header inclusion clean-ups.
This commit is contained in:
Roman
2015-04-11 18:29:50 +03:00
6 changed files with 26 additions and 6 deletions

View File

@ -1,7 +1,7 @@
#include "msgpack.h"
#include "msgpack_common.h"
#include "private/unpack_p.h"
#include "private/pack_p.h"
#include <QByteArray>
QVariant MsgPack::unpack(const QByteArray &data)
{

View File

@ -1,10 +1,12 @@
#ifndef MSGPACK_H
#define MSGPACK_H
#include <QByteArray>
#include <QVariantList>
#include "msgpack_common.h"
#include "msgpack_export.h"
#include <QByteArray>
#include <QMetaType>
namespace MsgPack
{
MSGPACK_EXPORT QVariant unpack(const QByteArray &data);

View File

@ -1,7 +1,13 @@
#include "pack_p.h"
#include "private/sysdep.h"
#include <limits>
#include <QByteArray>
#include <QDebug>
#include <QMapIterator>
#include <QString>
#include <QStringList>
#include <limits>
QHash<QMetaType::Type, MsgPackPrivate::packer_t> MsgPackPrivate::user_packers;
bool MsgPackPrivate::compatibilityMode = false;

View File

@ -1,8 +1,14 @@
#ifndef PACK_P_H
#define PACK_P_H
#include <QVariant>
#include "../msgpack_common.h"
#include <QHash>
#include <QMetaType>
class QByteArray;
class QString;
namespace MsgPackPrivate {
/* if wr (write) == false, packer just moves pointer forward
*

View File

@ -1,6 +1,9 @@
#include "unpack_p.h"
#include "sysdep.h"
#include <QByteArray>
#include <QDebug>
#include <QMap>
MsgPackPrivate::type_parser_f MsgPackPrivate::unpackers[32] = {
unpack_nil,

View File

@ -1,8 +1,11 @@
#ifndef MSGPACK_P_H
#define MSGPACK_P_H
#include <QVariant>
#include "../msgpack_common.h"
#include <QHash>
#include <QVariant>
namespace MsgPackPrivate
{
/* unpack functions: