Fix BlackCore header includes

* Include only what is used
* Use forward declaration when possible
* Sorted includes

refs #598
This commit is contained in:
Roland Winklmeier
2016-05-13 11:24:57 +02:00
parent 3d7a39ed00
commit 933271b828
129 changed files with 1744 additions and 576 deletions

View File

@@ -7,22 +7,27 @@
* contained in the LICENSE file.
*/
//! \file
#ifndef BLACKCORE_INPUTMANAGER_H
#define BLACKCORE_INPUTMANAGER_H
#include "blackcoreexport.h"
#include "blackcore/blackcoreexport.h"
#include "blackcore/settings/application.h"
#include "blackinput/keyboard.h"
#include "blackinput/joystick.h"
#include "blackinput/keyboard.h"
#include "blackmisc/input/hotkeycombination.h"
#include <QObject>
#include <QHash>
#include <QVector>
#include <QPointer>
#include <type_traits>
#include <functional>
#include "blackmisc/settingscache.h"
//! \file
#include <QHash>
#include <QObject>
#include <QPointer>
#include <QString>
#include <QStringList>
#include <QVector>
#include <algorithm>
#include <functional>
#include <memory>
namespace BlackCore
{