1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-05 00:22:31 +02:00

Less (global) includes in/of SipPlugin.h

This commit is contained in:
Uwe L. Korn 2013-06-15 21:39:11 +02:00
parent b5cce70b4d
commit 9e6263856d
8 changed files with 37 additions and 21 deletions

View File

@ -32,6 +32,7 @@
#endif
#include "accounts/AccountDllMacro.h"
#include "accounts/Account.h"
#include "../XmppInfoPlugin.h"

View File

@ -24,6 +24,7 @@
#include "ZeroconfAccount.h"
#include "Source.h"
#include "sip/PeerInfo.h"
#include "sip/SipInfo.h"
#include "network/ControlConnection.h"
#include <QtPlugin>

View File

@ -20,16 +20,18 @@
#include "AccountManager.h"
#include "CredentialsManager.h"
#include "config.h"
#include "SourceList.h"
#include "TomahawkSettings.h"
#include "ResolverAccount.h"
#include "utils/Logger.h"
#include "sip/SipPlugin.h"
#include "sip/SipStatusMessage.h"
#include "jobview/JobStatusView.h"
#include "jobview/JobStatusModel.h"
#include "utils/Closure.h"
#include "utils/Logger.h"
#include "CredentialsManager.h"
#include "config.h"
#include "ResolverAccount.h"
#include "SourceList.h"
#include "TomahawkSettings.h"
#include <QtCore/QLibrary>
#include <QtCore/QDir>

View File

@ -27,7 +27,6 @@
#include "Typedefs.h"
#include "DllMacro.h"
#include "infosystem/InfoSystem.h"
#include "sip/SipPlugin.h"
#include "Account.h"
namespace Tomahawk

View File

@ -24,6 +24,7 @@
#include "database/Database.h"
#include "database/DatabaseImpl.h"
#include "sip/SipInfo.h"
#include "sip/SipPlugin.h"
#include "utils/Logger.h"

View File

@ -19,13 +19,16 @@
#include "PeerInfo_p.h"
#include "SipPlugin.h"
#include "WeakPeerHash.h"
#include "utils/TomahawkCache.h"
#include "utils/TomahawkUtilsGui.h"
#include "accounts/Account.h"
#include "network/ControlConnection.h"
#include "network/Servent.h"
#include "utils/Logger.h"
#include "utils/TomahawkCache.h"
#include "utils/TomahawkUtilsGui.h"
#include "SipInfo.h"
#include "SipPlugin.h"
#include "WeakPeerHash.h"
#include <QCryptographicHash>
#include <QBuffer>

View File

@ -4,6 +4,7 @@
* 2011, Dominik Schmidt <dev@dominik-schmidt.de>
* 2010-2011, Leo Franchi <lfranchi@kde.org>
* Copyright 2010-2011, Jeff Mitchell <jeff@tomahawk-player.org>
* Copyright 2013, Uwe L. Korn <uwelk@xhochy.com>
*
* Tomahawk is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -22,20 +23,26 @@
#ifndef SIPPLUGIN_H
#define SIPPLUGIN_H
#include "SipInfo.h"
#include "Typedefs.h"
#include <QObject>
#include <QString>
#include <QNetworkProxy>
#include "accounts/Account.h"
#ifndef ENABLE_HEADLESS
#include <QMenu>
#endif
#include "DllMacro.h"
class SipPlugin;
class SipInfo;
namespace Tomahawk
{
namespace Accounts
{
class Account;
}
class PeerInfo;
}
class DLLEXPORT SipPlugin : public QObject
{

View File

@ -27,14 +27,16 @@
#include "SourceList.h"
#include "accounts/AccountManager.h"
#include "network/Servent.h"
#include "sip/PeerInfo.h"
#include "utils/TomahawkUtilsGui.h"
#include "utils/Logger.h"
#include "infosystem/InfoSystem.h"
#include "infosystem/InfoSystemWorker.h"
#include "database/Database.h"
#include "database/DatabaseImpl.h"
#include "infosystem/InfoSystem.h"
#include "infosystem/InfoSystemWorker.h"
#include "network/Servent.h"
#include "sip/PeerInfo.h"
#include "sip/SipInfo.h"
#include "sip/SipPlugin.h"
#include "utils/TomahawkUtilsGui.h"
#include "utils/Logger.h"
#include <QLabel>
#include <QTextEdit>