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

@@ -10,25 +10,19 @@
#ifndef BLACKCORE_VOICE_H
#define BLACKCORE_VOICE_H
#include "blackcoreexport.h"
#include "audiodevice.h"
#include "voicechannel.h"
#include "audiomixer.h"
#include "blackmisc/aviation/callsignset.h"
#include "blackmisc/aviation/selcal.h"
#include "blackmisc/network/userlist.h"
#include "blackmisc/audio/voiceroomlist.h"
#include "blackmisc/audio/audiodeviceinfolist.h"
#include "blackmisc/statusmessage.h"
#include "blackcore/audiomixer.h"
#include "blackcore/blackcoreexport.h"
#include <QObject>
#include <QSharedPointer>
#include <memory>
namespace BlackCore
{
class IAudioInputDevice;
class IAudioOutputDevice;
class IVoiceChannel;
//! Interface to a connection to a ATC voice server for use in flight simulation.
class BLACKCORE_EXPORT IVoice : public QObject
{