Some header inclusion clean-ups.

o Include what is directly used, nothing more.
 o Don't rely on transitive inclusion.
 o Order inclusions as: 1) own, 2) Qt, 3) others.
 o Order inclusions alphabetically.
 o Use forward declarations where possible.
 o Blank line between include guard and #include directives.

Tested on Qt 4.8.6 and Qt 5.4.1.

This incidentally fixes "invalid use of incomplete type ‘class
QStringList’" which I got in pack_p.cpp with Qt 4.8.6.
This commit is contained in:
Elvis Stansvik
2015-04-11 15:45:04 +02:00
parent 64c7c813ca
commit 8d03b48b10
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)
{