Changeset - 78e71f9345c7
[Not reviewed]
! ! !
Jan Kaluza - 10 years ago 2015-11-18 14:05:57
jkaluza@redhat.com
Cleanup the includes, rename source code files to match the class name exactly
134 files changed with 432 insertions and 589 deletions:
0 comments (0 inline, 0 general)
backends/frotz/main.cpp
Show inline comments
 
@@ -8,8 +8,8 @@
 
 * program, but you don't have to.
 
 */
 

	
 
#include "transport/config.h"
 
#include "transport/networkplugin.h"
 
#include "transport/Config.h"
 
#include "transport/NetworkPlugin.h"
 
#include "Swiften/Swiften.h"
 
#include <boost/filesystem.hpp>
 
#include "unistd.h"
backends/libcommuni/ircnetworkplugin.cpp
Show inline comments
 
@@ -21,7 +21,7 @@
 
#include "ircnetworkplugin.h"
 
#include <IrcCommand>
 
#include <IrcMessage>
 
#include "transport/logging.h"
 
#include "transport/Logging.h"
 

	
 
DEFINE_LOGGER(logger, "IRCNetworkPlugin");
 

	
backends/libcommuni/ircnetworkplugin.h
Show inline comments
 
@@ -20,8 +20,8 @@
 

	
 
#pragma once
 
#ifndef Q_MOC_RUN
 
#include "transport/config.h"
 
#include "transport/networkplugin.h"
 
#include "transport/Config.h"
 
#include "transport/NetworkPlugin.h"
 
#include "session.h"
 
#include <QtCore>
 
#include <QtNetwork>
backends/libcommuni/main.cpp
Show inline comments
 
@@ -18,9 +18,9 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/config.h"
 
#include "transport/networkplugin.h"
 
#include "transport/logging.h"
 
#include "transport/Config.h"
 
#include "transport/NetworkPlugin.h"
 
#include "transport/Logging.h"
 
#include "session.h"
 
#include <QtCore>
 
#include <QtNetwork>
backends/libcommuni/session.cpp
Show inline comments
 
@@ -30,7 +30,7 @@
 
#define FROM_UTF8(WHAT) QString::fromUtf8((WHAT).c_str(), (WHAT).size())
 
#define TO_UTF8(WHAT) std::string((WHAT).toUtf8().data(), (WHAT).toUtf8().size())
 

	
 
#include "transport/logging.h"
 
#include "transport/Logging.h"
 

	
 
DEFINE_LOGGER(logger, "IRCConnection");
 

	
backends/libcommuni/session.h
Show inline comments
 
@@ -23,7 +23,7 @@
 

	
 
#ifndef Q_MOC_RUN
 
#include <IrcConnection>
 
#include <transport/networkplugin.h>
 
#include <transport/NetworkPlugin.h>
 
#include "Swiften/Swiften.h"
 
#include <boost/smart_ptr/make_shared.hpp>
 
#include <QTimer>
backends/libpurple/geventloop.cpp
Show inline comments
 
@@ -30,7 +30,7 @@
 

	
 
#include "purple_defs.h"
 

	
 
#include "transport/logging.h"
 
#include "transport/Logging.h"
 

	
 
DEFINE_LOGGER(logger, "EventLoop");
 

	
backends/libpurple/main.cpp
Show inline comments
 
@@ -10,10 +10,9 @@
 
#include <algorithm>
 
#include <iostream>
 

	
 
#include "transport/networkplugin.h"
 
#include "transport/logging.h"
 
#include "transport/config.h"
 
#include "transport/logging.h"
 
#include "transport/NetworkPlugin.h"
 
#include "transport/Logging.h"
 
#include "transport/Config.h"
 
#include "geventloop.h"
 

	
 
// #include "valgrind/memcheck.h"
backends/skype/main.cpp
Show inline comments
 
@@ -3,18 +3,18 @@
 
#include "sqlite3.h"
 
#include <iostream>
 

	
 
#include "transport/config.h"
 
#include "transport/logging.h"
 
#include "transport/transport.h"
 
#include "transport/usermanager.h"
 
#include "transport/memoryusage.h"
 
#include "transport/sqlite3backend.h"
 
#include "transport/userregistration.h"
 
#include "transport/user.h"
 
#include "transport/storagebackend.h"
 
#include "transport/rostermanager.h"
 
#include "transport/conversation.h"
 
#include "transport/networkplugin.h"
 
#include "transport/Config.h"
 
#include "transport/Logging.h"
 
#include "transport/Transport.h"
 
#include "transport/UserManager.h"
 
#include "transport/MemoryUsage.h"
 
#include "transport/SQLite3Backend.h"
 
#include "transport/UserRegistration.h"
 
#include "transport/User.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/RosterManager.h"
 
#include "transport/Conversation.h"
 
#include "transport/NetworkPlugin.h"
 
#include <boost/filesystem.hpp>
 
#include "sys/wait.h"
 
#include "sys/signal.h"
backends/skype/skype.cpp
Show inline comments
 
@@ -22,18 +22,17 @@
 
#include "skypeplugin.h"
 
#include "skypedb.h"
 

	
 
#include "transport/config.h"
 
#include "transport/logging.h"
 
#include "transport/transport.h"
 
#include "transport/usermanager.h"
 
#include "transport/memoryusage.h"
 
#include "transport/sqlite3backend.h"
 
#include "transport/userregistration.h"
 
#include "transport/user.h"
 
#include "transport/storagebackend.h"
 
#include "transport/rostermanager.h"
 
#include "transport/conversation.h"
 
#include "transport/networkplugin.h"
 
#include "transport/Logging.h"
 
#include "transport/Transport.h"
 
#include "transport/UserManager.h"
 
#include "transport/MemoryUsage.h"
 
#include "transport/SQLite3Backend.h"
 
#include "transport/UserRegistration.h"
 
#include "transport/User.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/RosterManager.h"
 
#include "transport/Conversation.h"
 
#include "transport/NetworkPlugin.h"
 
#include <boost/filesystem.hpp>
 
#include "sys/wait.h"
 
#include "sys/signal.h"
backends/skype/skypedb.cpp
Show inline comments
 
@@ -20,18 +20,17 @@
 

	
 
#include "skypedb.h"
 

	
 
#include "transport/config.h"
 
#include "transport/logging.h"
 
#include "transport/transport.h"
 
#include "transport/usermanager.h"
 
#include "transport/memoryusage.h"
 
#include "transport/sqlite3backend.h"
 
#include "transport/userregistration.h"
 
#include "transport/user.h"
 
#include "transport/storagebackend.h"
 
#include "transport/rostermanager.h"
 
#include "transport/conversation.h"
 
#include "transport/networkplugin.h"
 
#include "transport/Logging.h"
 
#include "transport/Transport.h"
 
#include "transport/UserManager.h"
 
#include "transport/MemoryUsage.h"
 
#include "transport/SQLite3Backend.h"
 
#include "transport/UserRegistration.h"
 
#include "transport/User.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/RosterManager.h"
 
#include "transport/Conversation.h"
 
#include "transport/NetworkPlugin.h"
 
#include <boost/filesystem.hpp>
 
#include "sys/wait.h"
 
#include "sys/signal.h"
backends/skype/skypeplugin.cpp
Show inline comments
 
@@ -22,18 +22,17 @@
 
#include "skype.h"
 
#include "skypedb.h"
 

	
 
#include "transport/config.h"
 
#include "transport/logging.h"
 
#include "transport/transport.h"
 
#include "transport/usermanager.h"
 
#include "transport/memoryusage.h"
 
#include "transport/sqlite3backend.h"
 
#include "transport/userregistration.h"
 
#include "transport/user.h"
 
#include "transport/storagebackend.h"
 
#include "transport/rostermanager.h"
 
#include "transport/conversation.h"
 
#include "transport/networkplugin.h"
 
#include "transport/Logging.h"
 
#include "transport/Transport.h"
 
#include "transport/UserManager.h"
 
#include "transport/MemoryUsage.h"
 
#include "transport/SQLite3Backend.h"
 
#include "transport/UserRegistration.h"
 
#include "transport/User.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/RosterManager.h"
 
#include "transport/Conversation.h"
 
#include "transport/NetworkPlugin.h"
 
#include <boost/filesystem.hpp>
 
#include "sys/wait.h"
 
#include "sys/signal.h"
backends/skype/skypeplugin.h
Show inline comments
 
@@ -25,8 +25,8 @@
 
#include "sqlite3.h"
 
#include <iostream>
 
#include <map>
 
#include "transport/networkplugin.h"
 
#include "transport/config.h"
 
#include "transport/NetworkPlugin.h"
 
#include "transport/Config.h"
 

	
 
class Skype;
 

	
backends/smstools3/main.cpp
Show inline comments
 
@@ -8,13 +8,13 @@
 
 * program, but you don't have to.
 
 */
 

	
 
#include "transport/config.h"
 
#include "transport/logging.h"
 
#include "transport/networkplugin.h"
 
#include "transport/sqlite3backend.h"
 
#include "transport/mysqlbackend.h"
 
#include "transport/pqxxbackend.h"
 
#include "transport/storagebackend.h"
 
#include "transport/Config.h"
 
#include "transport/Logging.h"
 
#include "transport/NetworkPlugin.h"
 
#include "transport/SQLite3Backend.h"
 
#include "transport/MySQLBackend.h"
 
#include "transport/PQXXBackend.h"
 
#include "transport/StorageBackend.h"
 
#include "Swiften/Swiften.h"
 
#include <boost/filesystem.hpp>
 
#include "unistd.h"
backends/swiften/main.cpp
Show inline comments
 
// Transport includes
 
#include "transport/config.h"
 
#include "transport/networkplugin.h"
 
#include "transport/logging.h"
 
#include "transport/Config.h"
 
#include "transport/NetworkPlugin.h"
 
#include "transport/Logging.h"
 

	
 
#include "boost/date_time/posix_time/posix_time.hpp"
 

	
backends/template/main.cpp
Show inline comments
 
#include "plugin.h"
 

	
 
// Transport includes
 
#include "transport/config.h"
 
#include "transport/networkplugin.h"
 
#include "transport/logging.h"
 
#include "transport/Config.h"
 
#include "transport/NetworkPlugin.h"
 
#include "transport/Logging.h"
 

	
 
// Swiften
 
#include "Swiften/Swiften.h"
backends/template/plugin.cpp
Show inline comments
 
#include "plugin.h"
 
// Transport includes
 
#include "transport/config.h"
 
#include "transport/networkplugin.h"
 
#include "transport/logging.h"
 
#include "transport/Config.h"
 
#include "transport/NetworkPlugin.h"
 
#include "transport/Logging.h"
 

	
 
// Swiften
 
#include "Swiften/Swiften.h"
backends/template/plugin.h
Show inline comments
 
@@ -2,8 +2,8 @@
 

	
 
#include "Swiften/Swiften.h"
 

	
 
#include "transport/config.h"
 
#include "transport/networkplugin.h"
 
#include "transport/Config.h"
 
#include "transport/NetworkPlugin.h"
 

	
 
class Plugin : public Transport::NetworkPlugin {
 
	public:
backends/twitter/HTTPRequest.h
Show inline comments
 
@@ -2,7 +2,7 @@
 
#define HTTPREQ_H
 

	
 
#include "curl/curl.h"
 
#include "transport/logging.h"
 
#include "transport/Logging.h"
 
#include <iostream>
 
#include <sstream>
 
#include <string.h>
backends/twitter/Requests/CreateFriendRequest.h
Show inline comments
 
#ifndef CREATE_FRIEND
 
#define CREATE_FRIEND
 

	
 
#include "transport/threadpool.h"
 
#include "transport/ThreadPool.h"
 
#include "../TwitterResponseParser.h"
 
#include "../libtwitcurl/twitcurl.h"
 
#include "transport/logging.h"
 
#include "transport/Logging.h"
 
#include <string>
 
#include <boost/function.hpp>
 
#include <iostream>
backends/twitter/Requests/DestroyFriendRequest.h
Show inline comments
 
#ifndef DESTROY_FRIEND
 
#define DESTROY_FRIEND
 

	
 
#include "transport/threadpool.h"
 
#include "transport/ThreadPool.h"
 
#include "../TwitterResponseParser.h"
 
#include "../libtwitcurl/twitcurl.h"
 
#include "transport/logging.h"
 
#include "transport/Logging.h"
 
#include <string>
 
#include <boost/function.hpp>
 
#include <iostream>
backends/twitter/Requests/DirectMessageRequest.h
Show inline comments
 
#ifndef DIRECT_MESSAGE
 
#define DIRECT_MESSAGE
 

	
 
#include "transport/threadpool.h"
 
#include "transport/ThreadPool.h"
 
#include "../TwitterResponseParser.h"
 
#include "../libtwitcurl/twitcurl.h"
 
#include "transport/logging.h"
 
#include "transport/Logging.h"
 
#include <string>
 
#include <boost/function.hpp>
 
#include <iostream>
backends/twitter/Requests/FetchFriends.h
Show inline comments
 
#ifndef FRIENDS_H
 
#define FRIENDS_H
 

	
 
#include "transport/threadpool.h"
 
#include "transport/ThreadPool.h"
 
#include "../libtwitcurl/twitcurl.h"
 
#include "../TwitterResponseParser.h"
 
#include "transport/logging.h"
 
#include "transport/Logging.h"
 
#include <string>
 
#include <boost/signals.hpp>
 
#include <boost/function.hpp>
backends/twitter/Requests/HelpMessageRequest.h
Show inline comments
 
#ifndef HELPMESSAGE_H
 
#define HELPMESSAGE_H
 

	
 
#include "transport/threadpool.h"
 
#include "transport/ThreadPool.h"
 
#include "../libtwitcurl/twitcurl.h"
 
#include "transport/networkplugin.h"
 
#include "transport/logging.h"
 
#include "transport/Logging.h"
 
#include <string>
 
#include <boost/function.hpp>
 
#include <iostream>
backends/twitter/Requests/OAuthFlow.h
Show inline comments
 
#ifndef OAUTH_FLOW
 
#define OAUTH_FLOW
 

	
 
#include "transport/threadpool.h"
 
#include "transport/ThreadPool.h"
 
#include "../libtwitcurl/twitcurl.h"
 
#include "../TwitterPlugin.h"
 
#include "transport/logging.h"
 
#include "transport/Logging.h"
 

	
 
#include <string>
 
#include <iostream>
backends/twitter/Requests/PINExchangeProcess.h
Show inline comments
 
#ifndef PIN_EXCHANGE
 
#define PIN_EXCHANGE
 

	
 
#include "transport/threadpool.h"
 
#include "transport/ThreadPool.h"
 
#include "../libtwitcurl/twitcurl.h"
 
#include "../TwitterPlugin.h"
 
#include "transport/networkplugin.h"
 
#include "transport/logging.h"
 
#include "transport/Logging.h"
 

	
 
#include <string>
 
#include <iostream>
backends/twitter/Requests/ProfileImageRequest.h
Show inline comments
 
#ifndef PROFILEIMAGE_H
 
#define PROFILEIMAGE_H
 

	
 
#include "transport/threadpool.h"
 
#include "../TwitterResponseParser.h"
 
#include "transport/logging.h"
 
#include "transport/config.h"
 
#include "transport/ThreadPool.h"
 
#include "transport/Logging.h"
 
#include "transport/Config.h"
 
#include <string>
 
#include <boost/signals.hpp>
 
#include <boost/function.hpp>
backends/twitter/Requests/RetweetRequest.h
Show inline comments
 
#ifndef RETWEET_H
 
#define RETWEET_H
 

	
 
#include "transport/threadpool.h"
 
#include "transport/ThreadPool.h"
 
#include "../TwitterResponseParser.h"
 
#include "../libtwitcurl/twitcurl.h"
 
#include "transport/networkplugin.h"
 
#include "transport/logging.h"
 
#include "transport/Logging.h"
 
#include <boost/function.hpp>
 
#include <string>
 
#include <iostream>
backends/twitter/Requests/StatusUpdateRequest.h
Show inline comments
 
#ifndef STATUS_UPDATE
 
#define STATUS_UPDATE
 

	
 
#include "transport/threadpool.h"
 
#include "transport/ThreadPool.h"
 
#include "../libtwitcurl/twitcurl.h"
 
#include "../TwitterResponseParser.h"
 
#include "transport/networkplugin.h"
 
#include "transport/logging.h"
 
#include "transport/Logging.h"
 
#include <boost/function.hpp>
 
#include <string>
 
#include <iostream>
backends/twitter/Requests/TimelineRequest.h
Show inline comments
 
#ifndef TIMELINE_H
 
#define TIMELINE_H
 

	
 
#include "transport/threadpool.h"
 
#include "transport/ThreadPool.h"
 
#include "../libtwitcurl/twitcurl.h"
 
#include "../TwitterResponseParser.h"
 
#include "transport/logging.h"
 
#include "transport/Logging.h"
 
#include <string>
 
#include <iostream>
 
#include <boost/function.hpp>
backends/twitter/TwitterPlugin.h
Show inline comments
 
#ifndef TWITTER_PLUGIN
 
#define TWITTER_PLUGIN
 

	
 
#include "transport/config.h"
 
#include "transport/networkplugin.h"
 
#include "transport/logging.h"
 
#include "transport/sqlite3backend.h"
 
#include "transport/mysqlbackend.h"
 
#include "transport/pqxxbackend.h"
 
#include "transport/storagebackend.h"
 
#include "transport/threadpool.h"
 
#include "transport/Config.h"
 
#include "transport/NetworkPlugin.h"
 
#include "transport/Logging.h"
 
#include "transport/SQLite3Backend.h"
 
#include "transport/MySQLBackend.h"
 
#include "transport/PQXXBackend.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/ThreadPool.h"
 

	
 
#include "Swiften/Swiften.h"
 
#ifndef _WIN32
backends/twitter/TwitterResponseParser.cpp
Show inline comments
 
#include "TwitterResponseParser.h"
 
#include "transport/logging.h"
 
#include "transport/Logging.h"
 
#include "boost/algorithm/string.hpp"
 
#include <cctype>
 
#include "boost/date_time/local_time/local_time.hpp"
include/Swiften/FileTransfer/CombinedOutgoingFileTransferManager.h
Show inline comments
 
@@ -11,7 +11,7 @@
 

	
 
#include <Swiften/JID/JID.h>
 

	
 
#include "transport/presenceoracle.h"
 
#include "transport/PresenceOracle.h"
 
#include <Swiften/FileTransfer/OutgoingFileTransfer.h>
 
#include <Swiften/Version.h>
 
#define HAVE_SWIFTEN_3  (SWIFTEN_VERSION >= 0x030000)
include/Swiften/TLS/OpenSSL/OpenSSLServerContext.cpp
Show inline comments
 
@@ -14,7 +14,7 @@
 
#include <openssl/err.h>
 
#include <openssl/pkcs12.h>
 

	
 
#include "transport/logging.h"
 
#include "transport/Logging.h"
 
DEFINE_LOGGER(logger, "OpenSSLServerContext");
 

	
 

	
include/transport/AdminInterface.h
Show inline comments
 
file renamed from include/transport/admininterface.h to include/transport/AdminInterface.h
include/transport/Buddy.h
Show inline comments
 
file renamed from include/transport/buddy.h to include/transport/Buddy.h
 
@@ -22,7 +22,6 @@
 

	
 
#include <string>
 
#include <algorithm>
 
#include "transport/transport.h"
 
#include "Swiften/Elements/VCard.h"
 
#include "Swiften/Elements/Presence.h"
 

	
include/transport/Config.h
Show inline comments
 
file renamed from include/transport/config.h to include/transport/Config.h
include/transport/Conversation.h
Show inline comments
 
file renamed from include/transport/conversation.h to include/transport/Conversation.h
 
@@ -22,8 +22,7 @@
 

	
 
#include <string>
 
#include <algorithm>
 
#include "transport/transport.h"
 

	
 
#include <list>
 
#include "Swiften/Elements/Message.h"
 
#include "Swiften/Elements/Presence.h"
 

	
include/transport/ConversationManager.h
Show inline comments
 
file renamed from include/transport/conversationmanager.h to include/transport/ConversationManager.h
include/transport/Factory.h
Show inline comments
 
file renamed from include/transport/factory.h to include/transport/Factory.h
 
@@ -22,12 +22,7 @@
 

	
 
#include <string>
 
#include <algorithm>
 
#include "transport/transport.h"
 

	
 
#include "Swiften/Elements/Message.h"
 
#include "transport/conversation.h"
 
#include "transport/buddy.h"
 
#include "transport/storagebackend.h"
 

	
 
namespace Transport {
 

	
 
@@ -35,6 +30,7 @@ class Conversation;
 
class Buddy;
 
class ConversationManager;
 
class RosterManager;
 
struct BuddyInfo;
 

	
 
class Factory {
 
	public:
include/transport/FileTransferManager.h
Show inline comments
 
file renamed from include/transport/filetransfermanager.h to include/transport/FileTransferManager.h
include/transport/Frontend.h
Show inline comments
 
file renamed from include/transport/frontend.h to include/transport/Frontend.h
include/transport/LocalBuddy.h
Show inline comments
 
file renamed from include/transport/localbuddy.h to include/transport/LocalBuddy.h
 
@@ -23,8 +23,7 @@
 

	
 
#include <string>
 
#include <algorithm>
 
#include "transport/buddy.h"
 
#include "transport/rostermanager.h"
 
#include "transport/Buddy.h"
 

	
 
namespace Transport {
 

	
include/transport/Logging.h
Show inline comments
 
file renamed from include/transport/logging.h to include/transport/Logging.h
include/transport/MemoryReadBytestream.h
Show inline comments
 
file renamed from include/transport/memoryreadbytestream.h to include/transport/MemoryReadBytestream.h
include/transport/MemoryUsage.h
Show inline comments
 
file renamed from include/transport/memoryusage.h to include/transport/MemoryUsage.h
include/transport/MySQLBackend.h
Show inline comments
 
file renamed from include/transport/mysqlbackend.h to include/transport/MySQLBackend.h
 
@@ -24,8 +24,8 @@
 

	
 
#include <string>
 
#include <map>
 
#include "transport/storagebackend.h"
 
#include "transport/config.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/Config.h"
 
#include "mysql.h"
 

	
 
namespace Transport {
include/transport/NetworkPlugin.h
Show inline comments
 
file renamed from include/transport/networkplugin.h to include/transport/NetworkPlugin.h
include/transport/NetworkPluginServer.h
Show inline comments
 
file renamed from include/transport/networkpluginserver.h to include/transport/NetworkPluginServer.h
 
@@ -20,6 +20,8 @@
 

	
 
#pragma once
 

	
 
#include "transport/FileTransferManager.h"
 

	
 
#include <time.h>
 
#include "Swiften/Presence/PresenceOracle.h"
 
#include "Swiften/Disco/EntityCapsManager.h"
 
@@ -28,14 +30,17 @@
 
#include "Swiften/Elements/ChatState.h"
 
#include "Swiften/Elements/RosterItemPayload.h"
 
#include "Swiften/Elements/VCard.h"
 
#include "Swiften/Elements/Message.h"
 
#include "Swiften/Elements/Presence.h"
 
#include "Swiften/Elements/IQ.h"
 
#include "Swiften/Network/Timer.h"
 
#include "Swiften/Parser/PayloadParsers/FullPayloadParserFactoryCollection.h"
 
#include "Swiften/Serializer/PayloadSerializers/FullPayloadSerializerCollection.h"
 
#include "Swiften/Parser/XMPPParser.h"
 
#include "Swiften/Parser/XMPPParserClient.h"
 
#include "Swiften/Serializer/XMPPSerializer.h"
 
#include "storagebackend.h"
 
#include "transport/filetransfermanager.h"
 
#include <Swiften/Version.h>
 
#include <Swiften/FileTransfer/FileTransfer.h>
 
#define HAVE_SWIFTEN_3  (SWIFTEN_VERSION >= 0x030000)
 

	
 
namespace Transport {
 
@@ -52,6 +57,8 @@ class RosterResponder;
 
class BlockResponder;
 
class DummyReadBytestream;
 
class AdminInterface;
 
class FileTransferManager;
 
class FileTransfer;
 

	
 
class NetworkPluginServer : Swift::XMPPParserClient {
 
	public:
include/transport/PQXXBackend.h
Show inline comments
 
file renamed from include/transport/pqxxbackend.h to include/transport/PQXXBackend.h
 
@@ -24,8 +24,8 @@
 

	
 
#include <string>
 
#include <map>
 
#include "transport/storagebackend.h"
 
#include "transport/config.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/Config.h"
 
#include <pqxx/pqxx>
 

	
 
namespace Transport {
include/transport/PresenceOracle.h
Show inline comments
 
file renamed from include/transport/presenceoracle.h to include/transport/PresenceOracle.h
include/transport/RosterManager.h
Show inline comments
 
file renamed from include/transport/rostermanager.h to include/transport/RosterManager.h
include/transport/RosterStorage.h
Show inline comments
 
file renamed from include/transport/rosterstorage.h to include/transport/RosterStorage.h
include/transport/SQLite3Backend.h
Show inline comments
 
file renamed from include/transport/sqlite3backend.h to include/transport/SQLite3Backend.h
 
@@ -24,12 +24,13 @@
 

	
 
#include <string>
 
#include <map>
 
#include "transport/storagebackend.h"
 
#include "transport/config.h"
 
#include "transport/StorageBackend.h"
 
#include "sqlite3.h"
 

	
 
namespace Transport {
 

	
 
class Config;
 

	
 
/// Used to store transport data into SQLite3 database.
 
class SQLite3Backend : public StorageBackend
 
{
include/transport/StorageBackend.h
Show inline comments
 
file renamed from include/transport/storagebackend.h to include/transport/StorageBackend.h
include/transport/ThreadPool.h
Show inline comments
 
file renamed from include/transport/threadpool.h to include/transport/ThreadPool.h
 
@@ -6,7 +6,6 @@
 
#include <boost/signals2/signal.hpp>
 
#include <queue>
 
#include <iostream>
 
#include "transport/logging.h"
 
#include "Swiften/EventLoop/EventLoop.h"
 

	
 

	
include/transport/Transport.h
Show inline comments
 
file renamed from include/transport/transport.h to include/transport/Transport.h
include/transport/User.h
Show inline comments
 
file renamed from include/transport/user.h to include/transport/User.h
 
@@ -21,11 +21,13 @@
 
#pragma once
 

	
 
#include <time.h>
 
#include "Swiften/Disco/EntityCapsManager.h"
 
#include "Swiften/Disco/EntityCapsProvider.h"
 
#include "storagebackend.h"
 
#include "transport/StorageBackend.h"
 
#include <Swiften/FileTransfer/OutgoingFileTransfer.h>
 
#include "Swiften/Elements/SpectrumErrorPayload.h"
 
#include "Swiften/JID/JID.h"
 
#include "Swiften/Elements/Presence.h"
 
#include "Swiften/Elements/Message.h"
 
#include "Swiften/Elements/DiscoInfo.h"
 
#include "Swiften/Network/Timer.h"
 
#include "Swiften/Network/Connection.h"
 

	
 
@@ -36,7 +38,6 @@ class RosterManager;
 
class ConversationManager;
 
class UserManager;
 
class PresenceOracle;
 
struct UserInfo;
 

	
 
/// Represents online XMPP user.
 
class User {
include/transport/UserManager.h
Show inline comments
 
file renamed from include/transport/usermanager.h to include/transport/UserManager.h
 
@@ -22,9 +22,9 @@
 

	
 
#include <string>
 
#include <map>
 
#include "transport/userregistry.h"
 
#include "Swiften/Elements/Message.h"
 
#include "Swiften/Elements/Presence.h"
 
#include "Swiften/JID/JID.h"
 
#include "Swiften/Disco/EntityCapsProvider.h"
 
#include "Swiften/Elements/DiscoInfo.h"
 
#include "Swiften/Elements/VCard.h"
 
@@ -38,6 +38,7 @@ class StorageBackend;
 
class StorageResponder;
 
class RosterResponder;
 
class UserRegistration;
 
class UserRegistry;
 

	
 
/// Manages online XMPP Users.
 

	
include/transport/UserRegistration.h
Show inline comments
 
file renamed from include/transport/userregistration.h to include/transport/UserRegistration.h
include/transport/UserRegistry.h
Show inline comments
 
file renamed from include/transport/userregistry.h to include/transport/UserRegistry.h
 
@@ -26,10 +26,11 @@
 
#include "Swiften/Network/NetworkFactories.h"
 
#include "Swiften/Network/Timer.h"
 
#include "Swiften/Network/TimerFactory.h"
 
#include "transport/config.h"
 

	
 
namespace Transport {
 

	
 
class Config;
 

	
 
/// Validates passwords in Server mode.
 

	
 
/// Normal login workflow could work like following:
include/transport/UsersReconnecter.h
Show inline comments
 
file renamed from include/transport/usersreconnecter.h to include/transport/UsersReconnecter.h
include/transport/Util.h
Show inline comments
 
file renamed from include/transport/util.h to include/transport/Util.h
 
@@ -27,10 +27,11 @@
 
#include "Swiften/StringCodecs/Base64.h"
 

	
 
#include <boost/filesystem.hpp>
 
#include "transport/config.h"
 

	
 
namespace Transport {
 

	
 
class Config;
 

	
 
namespace Util {
 

	
 
void createDirectories(Transport::Config *config, const boost::filesystem::path& ph);
plugin/cpp/CMakeLists.txt
Show inline comments
 
@@ -2,10 +2,10 @@ cmake_minimum_required(VERSION 2.6)
 
FILE(GLOB SRC *.cpp *.h)
 
FILE(GLOB HEADERS ../include/transport/*.h)
 

	
 
set(EXTRA_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/../../src/memoryusage.cpp)
 
set(EXTRA_SOURCES ${EXTRA_SOURCES} ${CMAKE_CURRENT_SOURCE_DIR}/../../src/logging.cpp)
 
set(EXTRA_SOURCES ${EXTRA_SOURCES} ${CMAKE_CURRENT_SOURCE_DIR}/../../src/config.cpp)
 
set(EXTRA_SOURCES ${EXTRA_SOURCES} ${CMAKE_CURRENT_SOURCE_DIR}/../../src/util.cpp)
 
set(EXTRA_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/../../src/MemoryUsage.cpp)
 
set(EXTRA_SOURCES ${EXTRA_SOURCES} ${CMAKE_CURRENT_SOURCE_DIR}/../../src/Logging.cpp)
 
set(EXTRA_SOURCES ${EXTRA_SOURCES} ${CMAKE_CURRENT_SOURCE_DIR}/../../src/Config.cpp)
 
set(EXTRA_SOURCES ${EXTRA_SOURCES} ${CMAKE_CURRENT_SOURCE_DIR}/../../src/Util.cpp)
 
set(EXTRA_SOURCES ${EXTRA_SOURCES} ${CMAKE_CURRENT_SOURCE_DIR}/../../include/transport/protocol.pb.cc)
 

	
 
if (NOT WIN32)
spectrum/src/frontends/xmpp/RosterResponder.h
Show inline comments
 
file renamed from include/transport/rosterresponder.h to spectrum/src/frontends/xmpp/RosterResponder.h
spectrum/src/frontends/xmpp/XMPPFrontend.cpp
Show inline comments
 
@@ -22,15 +22,15 @@
 
#include "XMPPRosterManager.h"
 
#include "XMPPUser.h"
 
#include "XMPPUserManager.h"
 
#include "transport/storagebackend.h"
 
#include <boost/bind.hpp>
 
#include <boost/smart_ptr/make_shared.hpp>
 
#include <boost/algorithm/string/predicate.hpp>
 
#include "transport/storagebackend.h"
 
#include "transport/factory.h"
 
#include "transport/userregistry.h"
 
#include "transport/logging.h"
 
#include "transport/config.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/Factory.h"
 
#include "transport/UserRegistry.h"
 
#include "transport/Logging.h"
 
#include "transport/Config.h"
 
#include "transport/Transport.h"
 
#include "discoitemsresponder.h"
 
#include "storageparser.h"
 
#ifdef _WIN32
spectrum/src/frontends/xmpp/XMPPFrontend.h
Show inline comments
 
@@ -20,8 +20,9 @@
 

	
 
#pragma once
 

	
 
#include "transport/Frontend.h"
 

	
 
#include <vector>
 
#include "transport/frontend.h"
 
#include "Swiften/Server/Server.h"
 
#include "Swiften/Disco/GetDiscoInfoRequest.h"
 
#include "Swiften/Disco/EntityCapsManager.h"
spectrum/src/frontends/xmpp/XMPPRosterManager.cpp
Show inline comments
 
@@ -21,16 +21,12 @@
 
#include "XMPPRosterManager.h"
 
#include "XMPPFrontend.h"
 
#include "XMPPUser.h"
 
#include "transport/rostermanager.h"
 
#include "transport/rosterstorage.h"
 
#include "transport/storagebackend.h"
 
#include "transport/buddy.h"
 
#include "transport/usermanager.h"
 
#include "transport/buddy.h"
 
#include "transport/user.h"
 
#include "transport/logging.h"
 
#include "transport/factory.h"
 
#include "transport/presenceoracle.h"
 
#include "transport/Buddy.h"
 
#include "transport/User.h"
 
#include "transport/Logging.h"
 
#include "transport/Factory.h"
 
#include "transport/PresenceOracle.h"
 
#include "transport/Transport.h"
 
#include "Swiften/Roster/SetRosterRequest.h"
 
#include "Swiften/Elements/RosterPayload.h"
 
#include "Swiften/Elements/RosterItemPayload.h"
spectrum/src/frontends/xmpp/XMPPRosterManager.h
Show inline comments
 
@@ -20,17 +20,17 @@
 

	
 
#pragma once
 

	
 
#include "transport/RosterManager.h"
 

	
 
#include <string>
 
#include <algorithm>
 
#include <map>
 
#include <boost/pool/pool_alloc.hpp>
 
#include <boost/pool/object_pool.hpp>
 
// #include "rosterstorage.h"
 
#include "Swiften/Elements/RosterPayload.h"
 
#include "Swiften/Queries/GenericRequest.h"
 
#include "Swiften/Roster/SetRosterRequest.h"
 
#include "Swiften/Elements/Presence.h"
 
#include "transport/rostermanager.h"
 
#include "Swiften/Network/Timer.h"
 

	
 
namespace Transport {
spectrum/src/frontends/xmpp/XMPPUser.cpp
Show inline comments
 
@@ -20,12 +20,9 @@
 

	
 
#include "XMPPUser.h"
 
#include "XMPPFrontend.h"
 
#include "transport/user.h"
 
#include "transport/frontend.h"
 
#include "transport/transport.h"
 
#include "transport/rostermanager.h"
 
#include "transport/usermanager.h"
 
#include "transport/logging.h"
 
#include "transport/Transport.h"
 
#include "transport/UserManager.h"
 
#include "transport/Logging.h"
 
#include "Swiften/Server/ServerStanzaChannel.h"
 
#include "Swiften/Elements/StreamError.h"
 
#include "Swiften/Elements/SpectrumErrorPayload.h"
spectrum/src/frontends/xmpp/XMPPUser.h
Show inline comments
 
@@ -20,7 +20,8 @@
 

	
 
#pragma once
 

	
 
#include "transport/user.h"
 
#include "transport/User.h"
 

	
 
#include <time.h>
 
#include "Swiften/Disco/EntityCapsManager.h"
 
#include "Swiften/Disco/EntityCapsProvider.h"
spectrum/src/frontends/xmpp/XMPPUserManager.cpp
Show inline comments
 
@@ -20,18 +20,13 @@
 

	
 
#include "XMPPUserManager.h"
 
#include "XMPPUserRegistration.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/storagebackend.h"
 
#include "transport/conversationmanager.h"
 
#include "transport/rostermanager.h"
 
#include "transport/userregistry.h"
 
#include "transport/logging.h"
 
#include "transport/frontend.h"
 
#include "transport/presenceoracle.h"
 
#include "transport/User.h"
 
#include "transport/Transport.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/Logging.h"
 
#include "transport/Frontend.h"
 
#include "storageresponder.h"
 
#include "vcardresponder.h"
 
#include "transport/frontend.h"
 
#include "XMPPFrontend.h"
 
#include "gatewayresponder.h"
 
#include "adhocmanager.h"
spectrum/src/frontends/xmpp/XMPPUserManager.h
Show inline comments
 
@@ -22,7 +22,7 @@
 

	
 
#include <string>
 
#include <map>
 
#include "transport/usermanager.h"
 
#include "transport/UserManager.h"
 
#include "Swiften/Elements/Message.h"
 
#include "Swiften/Elements/Presence.h"
 
#include "Swiften/Disco/EntityCapsProvider.h"
spectrum/src/frontends/xmpp/XMPPUserRegistration.cpp
Show inline comments
 
@@ -20,15 +20,15 @@
 

	
 
#include "XMPPUserRegistration.h"
 
#include "XMPPRosterManager.h"
 
#include "transport/userregistration.h"
 
#include "transport/usermanager.h"
 
#include "transport/storagebackend.h"
 
#include "transport/transport.h"
 
#include "transport/rostermanager.h"
 
#include "transport/user.h"
 
#include "transport/logging.h"
 
#include "transport/UserManager.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/Transport.h"
 
#include "transport/RosterManager.h"
 
#include "transport/User.h"
 
#include "transport/Logging.h"
 
#include "formutils.h"
 
#include "transport/buddy.h"
 
#include "transport/Buddy.h"
 
#include "transport/Config.h"
 
#include "Swiften/Elements/ErrorPayload.h"
 
#include "Swiften/EventLoop/SimpleEventLoop.h"
 
#include "Swiften/Network/BoostNetworkFactories.h"
spectrum/src/frontends/xmpp/XMPPUserRegistration.h
Show inline comments
 
@@ -25,7 +25,7 @@
 
#include "Swiften/Elements/RosterPayload.h"
 
#include <boost/signal.hpp>
 
#include <Swiften/Version.h>
 
#include "transport/userregistration.h"
 
#include "transport/UserRegistration.h"
 
#define HAVE_SWIFTEN_3  (SWIFTEN_VERSION >= 0x030000)
 

	
 
namespace Transport {
spectrum/src/frontends/xmpp/adhoccommand.cpp
Show inline comments
 
@@ -20,13 +20,9 @@
 

	
 
#include "adhoccommand.h"
 
#include "adhoccommandfactory.h"
 
#include "transport/conversation.h"
 
#include "transport/usermanager.h"
 
#include "transport/storagebackend.h"
 
#include "transport/buddy.h"
 
#include "transport/factory.h"
 
#include "transport/user.h"
 
#include "transport/logging.h"
 
#include "transport/UserManager.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/Logging.h"
 

	
 
namespace Transport {
 

	
spectrum/src/frontends/xmpp/adhocmanager.cpp
Show inline comments
 
@@ -18,18 +18,17 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "XMPPFrontend.h"
 

	
 
#include "adhocmanager.h"
 
#include "adhoccommandfactory.h"
 
#include "discoitemsresponder.h"
 
#include "transport/conversation.h"
 
#include "transport/usermanager.h"
 
#include "transport/buddy.h"
 
#include "transport/factory.h"
 
#include "transport/user.h"
 
#include "transport/logging.h"
 
#include "transport/storagebackend.h"
 
#include "transport/UserManager.h"
 
#include "transport/User.h"
 
#include "transport/Logging.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/Transport.h"
 
#include "transport/Config.h"
 

	
 
#include "XMPPFrontend.h"
 

	
 
namespace Transport {
 

	
spectrum/src/frontends/xmpp/blockresponder.cpp
Show inline comments
 
@@ -24,11 +24,11 @@
 
#include <boost/bind.hpp>
 
#include "Swiften/Queries/IQRouter.h"
 
#include "BlockPayload.h"
 
#include "transport/usermanager.h"
 
#include "transport/user.h"
 
#include "transport/buddy.h"
 
#include "transport/rostermanager.h"
 
#include "transport/logging.h"
 
#include "transport/UserManager.h"
 
#include "transport/User.h"
 
#include "transport/Buddy.h"
 
#include "transport/RosterManager.h"
 
#include "transport/Logging.h"
 

	
 
using namespace Swift;
 
using namespace boost;
spectrum/src/frontends/xmpp/discoinforesponder.cpp
Show inline comments
 
@@ -26,8 +26,8 @@
 
#include "Swiften/Disco/DiscoInfoResponder.h"
 
#include "Swiften/Queries/IQRouter.h"
 
#include "Swiften/Elements/DiscoInfo.h"
 
#include "transport/config.h"
 
#include "transport/logging.h"
 
#include "transport/Config.h"
 
#include "transport/Logging.h"
 
#include "Swiften/Disco/CapsInfoGenerator.h"
 
#include "XMPPFrontend.h"
 

	
spectrum/src/frontends/xmpp/discoitemsresponder.cpp
Show inline comments
 
@@ -23,12 +23,12 @@
 
#include <iostream>
 
#include <boost/bind.hpp>
 
#include "Swiften/Queries/IQRouter.h"
 
#include "transport/transport.h"
 
#include "transport/logging.h"
 
#include "transport/config.h"
 
#include "transport/Transport.h"
 
#include "transport/Logging.h"
 
#include "transport/Config.h"
 
#include "discoinforesponder.h"
 
#include "XMPPFrontend.h"
 
#include "transport/frontend.h"
 
#include "transport/Frontend.h"
 

	
 
using namespace Swift;
 
using namespace boost;
spectrum/src/frontends/xmpp/gatewayresponder.cpp
Show inline comments
 
@@ -24,10 +24,11 @@
 
#include <boost/bind.hpp>
 
#include "Swiften/Queries/IQRouter.h"
 
#include "Swiften/Elements/RawXMLPayload.h"
 
#include "transport/usermanager.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/logging.h"
 
#include "transport/UserManager.h"
 
#include "transport/User.h"
 
#include "transport/Transport.h"
 
#include "transport/Logging.h"
 
#include "transport/Config.h"
 

	
 
using namespace Swift;
 
using namespace boost;
spectrum/src/frontends/xmpp/rosterresponder.cpp
Show inline comments
 
@@ -18,19 +18,20 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/rosterresponder.h"
 
#include "RosterResponder.h"
 

	
 
#include <iostream>
 
#include <boost/bind.hpp>
 
#include "Swiften/Queries/IQRouter.h"
 
#include "transport/user.h"
 
#include "transport/usermanager.h"
 
#include "transport/rostermanager.h"
 
#include "transport/buddy.h"
 
#include "transport/logging.h"
 
#include "transport/factory.h"
 
#include "transport/User.h"
 
#include "transport/UserManager.h"
 
#include "transport/RosterManager.h"
 
#include "transport/Buddy.h"
 
#include "transport/Logging.h"
 
#include "transport/Factory.h"
 
#include "transport/Transport.h"
 
#include "XMPPFrontend.h"
 
#include "transport/frontend.h"
 
#include "transport/Frontend.h"
 

	
 
using namespace Swift;
 
using namespace boost;
spectrum/src/frontends/xmpp/settingsadhoccommand.cpp
Show inline comments
 
@@ -19,13 +19,12 @@
 
 */
 

	
 
#include "settingsadhoccommand.h"
 
#include "transport/conversation.h"
 
#include "transport/usermanager.h"
 
#include "transport/buddy.h"
 
#include "transport/factory.h"
 
#include "transport/user.h"
 
#include "transport/logging.h"
 
#include "transport/storagebackend.h"
 
#include "transport/UserManager.h"
 
#include "transport/User.h"
 
#include "transport/Logging.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/Transport.h"
 
#include "transport/Config.h"
 
#include "formutils.h"
 

	
 

	
spectrum/src/frontends/xmpp/statsresponder.cpp
Show inline comments
 
@@ -23,18 +23,18 @@
 
#include <iostream>
 
#include <boost/bind.hpp>
 
#include "Swiften/Queries/IQRouter.h"
 
#include "transport/usermanager.h"
 
#include "transport/user.h"
 
#include "transport/buddy.h"
 
#include "transport/rostermanager.h"
 
#include "transport/memoryusage.h"
 
#include "transport/conversationmanager.h"
 
#include "transport/rostermanager.h"
 
#include "transport/usermanager.h"
 
#include "transport/networkpluginserver.h"
 
#include "transport/logging.h"
 
#include "transport/frontend.h"
 
#include "transport/UserManager.h"
 
#include "transport/User.h"
 
#include "transport/RosterManager.h"
 
#include "transport/MemoryUsage.h"
 
#include "transport/NetworkPluginServer.h"
 
#include "transport/Logging.h"
 
#include "transport/Frontend.h"
 
#include "transport/Transport.h"
 
#include "transport/Buddy.h"
 
#include "XMPPFrontend.h"
 
#include <boost/foreach.hpp>
 
#include <boost/lexical_cast.hpp>
 

	
 
using namespace Swift;
 
using namespace boost;
spectrum/src/frontends/xmpp/storageresponder.cpp
Show inline comments
 
@@ -25,11 +25,10 @@
 
#include "Swiften/Queries/IQRouter.h"
 
#include "Swiften/Elements/RawXMLPayload.h"
 
#include "Swiften/Elements/Storage.h"
 
#include "Swiften/Elements/Storage.h"
 
#include "Swiften/Serializer/PayloadSerializers/StorageSerializer.h"
 
#include "transport/usermanager.h"
 
#include "transport/user.h"
 
#include "transport/logging.h"
 
#include "transport/UserManager.h"
 
#include "transport/User.h"
 
#include "transport/Logging.h"
 

	
 
using namespace Swift;
 
using namespace boost;
spectrum/src/frontends/xmpp/vcardresponder.cpp
Show inline comments
 
@@ -22,13 +22,13 @@
 

	
 
#include <iostream>
 
#include <boost/bind.hpp>
 
#include "transport/user.h"
 
#include "transport/buddy.h"
 
#include "transport/usermanager.h"
 
#include "transport/rostermanager.h"
 
#include "transport/transport.h"
 
#include "transport/logging.h"
 
#include "transport/User.h"
 
#include "transport/Buddy.h"
 
#include "transport/UserManager.h"
 
#include "transport/Transport.h"
 
#include "transport/Logging.h"
 
#include "Swiften/Queries/IQRouter.h"
 
#include <boost/foreach.hpp>
 

	
 
using namespace Swift;
 
using namespace boost;
spectrum/src/main.cpp
Show inline comments
 
#include "transport/config.h"
 
#include "transport/transport.h"
 
#include "transport/filetransfermanager.h"
 
#include "transport/usermanager.h"
 
#include "transport/sqlite3backend.h"
 
#include "transport/mysqlbackend.h"
 
#include "transport/pqxxbackend.h"
 
#include "transport/userregistration.h"
 
#include "transport/networkpluginserver.h"
 
#include "transport/admininterface.h"
 
#include "transport/usersreconnecter.h"
 
#include "transport/util.h"
 
#include "transport/logging.h"
 
#include "transport/Config.h"
 
#include "transport/Transport.h"
 
#include "transport/FileTransferManager.h"
 
#include "transport/UserManager.h"
 
#include "transport/SQLite3Backend.h"
 
#include "transport/MySQLBackend.h"
 
#include "transport/PQXXBackend.h"
 
#include "transport/UserRegistration.h"
 
#include "transport/UserRegistry.h"
 
#include "transport/NetworkPluginServer.h"
 
#include "transport/AdminInterface.h"
 
#include "transport/UsersReconnecter.h"
 
#include "transport/Util.h"
 
#include "transport/Logging.h"
 
#include "frontends/xmpp/XMPPFrontend.h"
 
#include "Swiften/EventLoop/SimpleEventLoop.h"
 
#include "Swiften/Network/BoostNetworkFactories.h"
spectrum_manager/src/CMakeLists.txt
Show inline comments
 
cmake_minimum_required(VERSION 2.6)
 
FILE(GLOB SRC *.cpp *.c)
 

	
 
ADD_EXECUTABLE(spectrum2_manager ${SRC} ../../src/config.cpp ../../src/util.cpp ${CMAKE_CURRENT_SOURCE_DIR}/../../include/transport/protocol.pb.cc)
 
ADD_EXECUTABLE(spectrum2_manager ${SRC} ../../src/Config.cpp ../../src/Util.cpp ${CMAKE_CURRENT_SOURCE_DIR}/../../include/transport/protocol.pb.cc)
 

	
 
ADD_DEPENDENCIES(spectrum2_manager pb)
 
SET_SOURCE_FILES_PROPERTIES(${CMAKE_CURRENT_SOURCE_DIR}/../../include/transport/protocol.pb.cc PROPERTIES GENERATED 1)
spectrum_manager/src/main.cpp
Show inline comments
 
#include "managerconfig.h"
 
#include "methods.h"
 
#include "server.h"
 
#include "transport/config.h"
 
#include "transport/Config.h"
 
#include "transport/protocol.pb.h"
 
#include "Swiften/Swiften.h"
 
#include "Swiften/EventLoop/SimpleEventLoop.h"
spectrum_manager/src/methods.h
Show inline comments
 
@@ -29,7 +29,7 @@
 
#include <boost/signal.hpp>
 

	
 
#include "managerconfig.h"
 
#include "transport/config.h"
 
#include "transport/Config.h"
 
#include "transport/protocol.pb.h"
 
#include "Swiften/Swiften.h"
 
#include "Swiften/EventLoop/SimpleEventLoop.h"
src/AdminInterface.cpp
Show inline comments
 
file renamed from src/admininterface.cpp to src/AdminInterface.cpp
 
@@ -18,20 +18,20 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/admininterface.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/storagebackend.h"
 
#include "transport/conversationmanager.h"
 
#include "transport/rostermanager.h"
 
#include "transport/usermanager.h"
 
#include "transport/networkpluginserver.h"
 
#include "transport/logging.h"
 
#include "transport/userregistration.h"
 
#include "transport/frontend.h"
 
#include "storageresponder.h"
 
#include "transport/memoryusage.h"
 
#include "transport/AdminInterface.h"
 
#include "transport/User.h"
 
#include "transport/Transport.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/UserManager.h"
 
#include "transport/NetworkPluginServer.h"
 
#include "transport/Logging.h"
 
#include "transport/UserRegistration.h"
 
#include "transport/Frontend.h"
 
#include "transport/MemoryUsage.h"
 
#include "transport/Config.h"
 

	
 
#include <boost/foreach.hpp>
 
#include <boost/lexical_cast.hpp>
 

	
 
namespace Transport {
 

	
src/Buddy.cpp
Show inline comments
 
file renamed from src/buddy.cpp to src/Buddy.cpp
 
@@ -18,14 +18,18 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/buddy.h"
 
#include "transport/rostermanager.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/usermanager.h"
 
#include "transport/frontend.h"
 
#include "transport/Buddy.h"
 
#include "transport/RosterManager.h"
 
#include "transport/User.h"
 
#include "transport/Transport.h"
 
#include "transport/UserManager.h"
 
#include "transport/Frontend.h"
 

	
 
#include "Swiften/Elements/VCardUpdate.h"
 
#include "Swiften/Elements/Presence.h"
 

	
 
#include <boost/foreach.hpp>
 
#include <boost/make_shared.hpp>
 

	
 
namespace Transport {
 

	
src/Config.cpp
Show inline comments
 
file renamed from src/config.cpp to src/Config.cpp
 
@@ -18,8 +18,9 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/config.h"
 
#include "transport/Config.h"
 
#include <fstream>
 

	
 
#ifdef _WIN32
 
#include <direct.h>
 
#define getcwd _getcwd
src/Conversation.cpp
Show inline comments
 
file renamed from src/conversation.cpp to src/Conversation.cpp
 
@@ -19,14 +19,14 @@
 
 */
 

	
 
#include <iostream>
 
#include "transport/conversation.h"
 
#include "transport/conversationmanager.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/buddy.h"
 
#include "transport/rostermanager.h"
 
#include "transport/frontend.h"
 
#include "transport/config.h"
 
#include "transport/Conversation.h"
 
#include "transport/ConversationManager.h"
 
#include "transport/User.h"
 
#include "transport/Transport.h"
 
#include "transport/Buddy.h"
 
#include "transport/RosterManager.h"
 
#include "transport/Frontend.h"
 
#include "transport/Config.h"
 

	
 
#include "Swiften/Elements/MUCItem.h"
 
#include "Swiften/Elements/MUCOccupant.h"
src/ConversationManager.cpp
Show inline comments
 
file renamed from src/conversationmanager.cpp to src/ConversationManager.cpp
 
@@ -18,13 +18,13 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/conversationmanager.h"
 
#include "transport/conversation.h"
 
#include "transport/usermanager.h"
 
#include "transport/buddy.h"
 
#include "transport/factory.h"
 
#include "transport/user.h"
 
#include "transport/logging.h"
 
#include "transport/ConversationManager.h"
 
#include "transport/Conversation.h"
 
#include "transport/Buddy.h"
 
#include "transport/Factory.h"
 
#include "transport/User.h"
 
#include "transport/Logging.h"
 
#include "transport/Transport.h"
 
#include "Swiften/Roster/SetRosterRequest.h"
 
#include "Swiften/Elements/RosterPayload.h"
 
#include "Swiften/Elements/RosterItemPayload.h"
src/FileTransferManager.cpp
Show inline comments
 
file renamed from src/filetransfermanager.cpp to src/FileTransferManager.cpp
 
@@ -18,12 +18,12 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/filetransfermanager.h"
 
#include "transport/transport.h"
 
#include "transport/usermanager.h"
 
#include "transport/user.h"
 
#include "transport/buddy.h"
 
#include "transport/logging.h"
 
#include "transport/FileTransferManager.h"
 
#include "transport/Transport.h"
 
#include "transport/UserManager.h"
 
#include "transport/User.h"
 
#include "transport/Buddy.h"
 
#include "transport/Logging.h"
 
#include "Swiften/Network/ConnectionServerFactory.h"
 

	
 
namespace Transport {
src/LocalBuddy.cpp
Show inline comments
 
file renamed from src/localbuddy.cpp to src/LocalBuddy.cpp
 
@@ -18,8 +18,10 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/localbuddy.h"
 
#include "transport/user.h"
 
#include "transport/LocalBuddy.h"
 
#include "transport/User.h"
 
#include "transport/RosterManager.h"
 
#include "transport/Transport.h"
 

	
 
namespace Transport {
 

	
src/Logging.cpp
Show inline comments
 
file renamed from src/logging.cpp to src/Logging.cpp
 
@@ -18,9 +18,9 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/logging.h"
 
#include "transport/config.h"
 
#include "transport/util.h"
 
#include "transport/Logging.h"
 
#include "transport/Config.h"
 
#include "transport/Util.h"
 
#include <boost/foreach.hpp>
 
#include <iostream>
 
#include <iterator>
src/MemoryReadByteStream.cpp
Show inline comments
 
file renamed from src/memoryreadbytestream.cpp to src/MemoryReadByteStream.cpp
 
@@ -18,7 +18,7 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/memoryreadbytestream.h"
 
#include "transport/MemoryReadBytestream.h"
 
#include <boost/foreach.hpp>
 

	
 
namespace Transport {
src/MemoryUsage.cpp
Show inline comments
 
file renamed from src/memoryusage.cpp to src/MemoryUsage.cpp
 
@@ -18,7 +18,7 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/memoryusage.h"
 
#include "transport/MemoryUsage.h"
 

	
 
#include <iostream>
 
#include <cstring>
src/MySQLBackend.cpp
Show inline comments
 
file renamed from src/mysqlbackend.cpp to src/MySQLBackend.cpp
 
@@ -20,9 +20,9 @@
 

	
 
#ifdef WITH_MYSQL
 

	
 
#include "transport/mysqlbackend.h"
 
#include "transport/util.h"
 
#include "transport/logging.h"
 
#include "transport/MySQLBackend.h"
 
#include "transport/Util.h"
 
#include "transport/Logging.h"
 
#include <boost/bind.hpp>
 

	
 
#define MYSQL_DB_VERSION 2
src/NetworkPluginServer.cpp
Show inline comments
 
file renamed from src/networkpluginserver.cpp to src/NetworkPluginServer.cpp
 
@@ -18,23 +18,23 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/networkpluginserver.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/storagebackend.h"
 
#include "transport/rostermanager.h"
 
#include "transport/usermanager.h"
 
#include "transport/conversationmanager.h"
 
#include "transport/localbuddy.h"
 
#include "transport/config.h"
 
#include "transport/conversation.h"
 
#include "transport/rosterresponder.h"
 
#include "transport/memoryreadbytestream.h"
 
#include "transport/logging.h"
 
#include "transport/admininterface.h"
 
#include "transport/frontend.h"
 
#include "transport/factory.h"
 
#include "blockresponder.h"
 
#include "transport/NetworkPluginServer.h"
 
#include "transport/User.h"
 
#include "transport/Transport.h"
 
#include "transport/RosterManager.h"
 
#include "transport/UserManager.h"
 
#include "transport/ConversationManager.h"
 
#include "transport/LocalBuddy.h"
 
#include "transport/Config.h"
 
#include "transport/Conversation.h"
 
#include "transport/MemoryReadBytestream.h"
 
#include "transport/Logging.h"
 
#include "transport/AdminInterface.h"
 
#include "transport/Frontend.h"
 
#include "transport/Factory.h"
 
#include "transport/UserRegistry.h"
 
#include "transport/protocol.pb.h"
 
#include "transport/Util.h"
 
#include "Swiften/Server/ServerStanzaChannel.h"
 
#include "Swiften/Elements/StreamError.h"
 
#include "Swiften/Network/BoostConnectionServer.h"
 
@@ -46,8 +46,6 @@
 
#include "Swiften/Elements/DeliveryReceiptRequest.h"
 
#include "Swiften/Elements/InvisiblePayload.h"
 
#include "Swiften/Elements/SpectrumErrorPayload.h"
 
#include "transport/protocol.pb.h"
 
#include "transport/util.h"
 

	
 
#include "boost/date_time/posix_time/posix_time.hpp"
 
#include "boost/signal.hpp"
src/PQXXBackend.cpp
Show inline comments
 
file renamed from src/pqxxbackend.cpp to src/PQXXBackend.cpp
 
@@ -20,8 +20,8 @@
 

	
 
#ifdef WITH_PQXX
 

	
 
#include "transport/pqxxbackend.h"
 
#include "transport/util.h"
 
#include "transport/PQXXBackend.h"
 
#include "transport/Util.h"
 
#include <boost/bind.hpp>
 
#include "log4cxx/logger.h"
 

	
src/PresenceOracle.cpp
Show inline comments
 
file renamed from src/presenceoracle.cpp to src/PresenceOracle.cpp
 
@@ -18,8 +18,8 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/presenceoracle.h"
 
#include "transport/frontend.h"
 
#include "transport/PresenceOracle.h"
 
#include "transport/Frontend.h"
 
#include "Swiften/Elements/MUCPayload.h"
 

	
 
#include <boost/bind.hpp>
src/RosterManager.cpp
Show inline comments
 
file renamed from src/rostermanager.cpp to src/RosterManager.cpp
 
@@ -18,22 +18,19 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/rostermanager.h"
 
#include "transport/rosterstorage.h"
 
#include "transport/storagebackend.h"
 
#include "transport/buddy.h"
 
#include "transport/usermanager.h"
 
#include "transport/buddy.h"
 
#include "transport/user.h"
 
#include "transport/logging.h"
 
#include "transport/frontend.h"
 
#include "transport/factory.h"
 
#include "Swiften/Roster/SetRosterRequest.h"
 
#include "transport/RosterManager.h"
 
#include "transport/RosterStorage.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/Buddy.h"
 
#include "transport/User.h"
 
#include "transport/Logging.h"
 
#include "transport/Frontend.h"
 
#include "transport/Factory.h"
 
#include "transport/Transport.h"
 
#include "Swiften/Elements/RosterPayload.h"
 
#include "Swiften/Elements/RosterItemPayload.h"
 
#include "Swiften/Elements/RosterItemExchangePayload.h"
 
#include "Swiften/Elements/Nickname.h"
 
#include "Swiften/Queries/IQRouter.h"
 
#include <boost/foreach.hpp>
 
#include <boost/make_shared.hpp>
 

	
src/RosterStorage.cpp
Show inline comments
 
file renamed from src/rosterstorage.cpp to src/RosterStorage.cpp
 
@@ -18,11 +18,12 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/rosterstorage.h"
 
#include "transport/buddy.h"
 
#include "transport/user.h"
 
#include "transport/storagebackend.h"
 
#include "transport/logging.h"
 
#include "transport/RosterStorage.h"
 
#include "transport/Buddy.h"
 
#include "transport/User.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/Logging.h"
 
#include "transport/Transport.h"
 

	
 
#include "Swiften/Network/NetworkFactories.h"
 

	
src/SQLite3Backend.cpp
Show inline comments
 
file renamed from src/sqlite3backend.cpp to src/SQLite3Backend.cpp
 
@@ -20,9 +20,10 @@
 

	
 
#ifdef WITH_SQLITE
 

	
 
#include "transport/sqlite3backend.h"
 
#include "transport/util.h"
 
#include "transport/logging.h"
 
#include "transport/SQLite3Backend.h"
 
#include "transport/Util.h"
 
#include "transport/Logging.h"
 
#include "transport/Config.h"
 
#include <boost/bind.hpp>
 

	
 
#define SQLITE_DB_VERSION 3
src/StorageBackend.cpp
Show inline comments
 
file renamed from src/storagebackend.cpp to src/StorageBackend.cpp
 
#include "transport/storagebackend.h"
 
#include "transport/config.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/Config.h"
 

	
 
#include "transport/sqlite3backend.h"
 
#include "transport/mysqlbackend.h"
 
#include "transport/pqxxbackend.h"
 
#include "transport/SQLite3Backend.h"
 
#include "transport/MySQLBackend.h"
 
#include "transport/PQXXBackend.h"
 
#include "Swiften/StringCodecs/Base64.h"
 

	
 

	
src/ThreadPool.cpp
Show inline comments
 
file renamed from src/threadpool.cpp to src/ThreadPool.cpp
 
#include "transport/threadpool.h"
 
#include "transport/ThreadPool.h"
 
#include "transport/Logging.h"
 

	
 
DEFINE_LOGGER(logger, "ThreadPool")
 
boost::signals2::signal< void (Thread*, int) > onWorkCompleted;
 

	
src/Transport.cpp
Show inline comments
 
file renamed from src/transport.cpp to src/Transport.cpp
 
@@ -19,11 +19,11 @@
 
 */
 

	
 

	
 
#include "transport/transport.h"
 
#include "transport/logging.h"
 
#include "transport/frontend.h"
 
#include "transport/presenceoracle.h"
 
#include "transport/config.h"
 
#include "transport/Transport.h"
 
#include "transport/Logging.h"
 
#include "transport/Frontend.h"
 
#include "transport/PresenceOracle.h"
 
#include "transport/Config.h"
 

	
 
#include <boost/bind.hpp>
 
#include <boost/algorithm/string/predicate.hpp>
src/User.cpp
Show inline comments
 
file renamed from src/user.cpp to src/User.cpp
 
@@ -18,18 +18,19 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/user.h"
 
#include "transport/frontend.h"
 
#include "transport/transport.h"
 
#include "transport/storagebackend.h"
 
#include "transport/rostermanager.h"
 
#include "transport/usermanager.h"
 
#include "transport/conversationmanager.h"
 
#include "transport/presenceoracle.h"
 
#include "transport/logging.h"
 
#include "transport/factory.h"
 
#include "transport/User.h"
 
#include "transport/Frontend.h"
 
#include "transport/Transport.h"
 
#include "transport/RosterManager.h"
 
#include "transport/UserManager.h"
 
#include "transport/Conversation.h"
 
#include "transport/Factory.h"
 
#include "transport/ConversationManager.h"
 
#include "transport/PresenceOracle.h"
 
#include "transport/Logging.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/Buddy.h"
 
#include "Swiften/Server/ServerStanzaChannel.h"
 
#include "Swiften/Elements/StreamError.h"
 
#include "Swiften/Elements/MUCPayload.h"
 
#include "Swiften/Elements/SpectrumErrorPayload.h"
 
#include "Swiften/Elements/CapsInfo.h"
src/UserManager.cpp
Show inline comments
 
file renamed from src/usermanager.cpp to src/UserManager.cpp
 
@@ -18,17 +18,17 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/usermanager.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/storagebackend.h"
 
#include "transport/conversationmanager.h"
 
#include "transport/rostermanager.h"
 
#include "transport/userregistry.h"
 
#include "transport/logging.h"
 
#include "transport/frontend.h"
 
#include "transport/presenceoracle.h"
 
#include "storageresponder.h"
 
#include "transport/UserManager.h"
 
#include "transport/User.h"
 
#include "transport/Transport.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/ConversationManager.h"
 
#include "transport/RosterManager.h"
 
#include "transport/UserRegistry.h"
 
#include "transport/Logging.h"
 
#include "transport/Frontend.h"
 
#include "transport/PresenceOracle.h"
 
#include "transport/Config.h"
 

	
 
#include "Swiften/Server/ServerStanzaChannel.h"
 
#include "Swiften/Elements/StreamError.h"
 
@@ -52,7 +52,6 @@ UserManager::UserManager(Component *component, UserRegistry *userRegistry, Stora
 
	m_sentToBackend = 0;
 
	m_component = component;
 
	m_storageBackend = storageBackend;
 
	m_storageResponder = NULL;
 
	m_userRegistry = userRegistry;
 

	
 
	component->onUserPresenceReceived.connect(bind(&UserManager::handlePresence, this, _1));
src/UserRegistration.cpp
Show inline comments
 
file renamed from src/userregistration.cpp to src/UserRegistration.cpp
 
@@ -18,24 +18,17 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/userregistration.h"
 
#include "transport/usermanager.h"
 
#include "transport/storagebackend.h"
 
#include "transport/transport.h"
 
#include "transport/rostermanager.h"
 
#include "transport/user.h"
 
#include "transport/logging.h"
 
#include "Swiften/Elements/ErrorPayload.h"
 
#include "Swiften/EventLoop/SimpleEventLoop.h"
 
#include "Swiften/Network/BoostNetworkFactories.h"
 
#include "Swiften/Client/Client.h"
 
#include "transport/UserRegistration.h"
 
#include "transport/UserManager.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/Transport.h"
 
#include "transport/RosterManager.h"
 
#include "transport/User.h"
 
#include "transport/Logging.h"
 
#include <boost/shared_ptr.hpp>
 
#include <boost/thread.hpp>
 
#include <boost/date_time/posix_time/posix_time.hpp>
 
#include <boost/regex.hpp> 
 
#if HAVE_SWIFTEN_3
 
#include <Swiften/Elements/Form.h>
 
#endif
 

	
 
using namespace Swift;
 

	
src/UserRegistry.cpp
Show inline comments
 
file renamed from src/userregistry.cpp to src/UserRegistry.cpp
 
@@ -21,8 +21,9 @@
 
#include <string>
 
#include <map>
 
#include "Swiften/Server/UserRegistry.h"
 
#include "transport/userregistry.h"
 
#include "transport/logging.h"
 
#include "transport/UserRegistry.h"
 
#include "transport/Config.h"
 
#include "transport/Logging.h"
 

	
 
namespace Transport {
 

	
src/UsersReconnecter.cpp
Show inline comments
 
file renamed from src/usersreconnecter.cpp to src/UsersReconnecter.cpp
 
@@ -18,16 +18,14 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/usersreconnecter.h"
 
#include "transport/UsersReconnecter.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/Transport.h"
 
#include "transport/Logging.h"
 
#include "transport/Frontend.h"
 

	
 
#include <iostream>
 
#include <boost/bind.hpp>
 
#include "Swiften/Queries/IQRouter.h"
 
#include "transport/storagebackend.h"
 
#include "transport/transport.h"
 
#include "transport/logging.h"
 
#include "transport/frontend.h"
 

	
 
#include "Swiften/Network/NetworkFactories.h"
 

	
 
using namespace Swift;
src/Util.cpp
Show inline comments
 
file renamed from src/util.cpp to src/Util.cpp
 
@@ -18,8 +18,8 @@
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 
 */
 

	
 
#include "transport/util.h"
 
#include "transport/config.h"
 
#include "transport/Util.h"
 
#include "transport/Config.h"
 
#include <boost/foreach.hpp>
 
#include <iostream>
 
#include <iterator>
src/tests/basictest.cpp
Show inline comments
 
#include "basictest.h"
 
#include "transport/userregistry.h"
 
#include "transport/config.h"
 
#include "transport/storagebackend.h"
 
#include "transport/userregistration.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/conversation.h"
 
#include "transport/usermanager.h"
 
#include "transport/localbuddy.h"
 
#include "XMPPFrontend.h"
 
#include "XMPPUserRegistration.h"
 
#include "XMPPUserManager.h"
src/tests/basictest.h
Show inline comments
 
@@ -23,20 +23,22 @@
 
#include <vector>
 
#include "Swiften/Swiften.h"
 
#include "Swiften/Queries/SetResponder.h"
 
#include "transport/conversation.h"
 
#include "transport/conversationmanager.h"
 
#include "transport/userregistry.h"
 
#include "transport/config.h"
 
#include "transport/storagebackend.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/conversation.h"
 
#include "transport/usermanager.h"
 
#include "transport/userregistration.h"
 
#include "transport/Conversation.h"
 
#include "transport/ConversationManager.h"
 
#include "transport/UserRegistry.h"
 
#include "transport/Config.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/User.h"
 
#include "transport/Transport.h"
 
#include "transport/UserManager.h"
 
#include "transport/UserRegistration.h"
 
#include "transport/RosterManager.h"
 
#include "transport/NetworkPluginServer.h"
 
#include "RosterResponder.h"
 
#include "discoitemsresponder.h"
 
#include "transport/localbuddy.h"
 
#include "transport/storagebackend.h"
 
#include "transport/factory.h"
 
#include "transport/LocalBuddy.h"
 
#include "transport/StorageBackend.h"
 
#include "transport/Factory.h"
 
#include "XMPPFrontend.h"
 
#include "XMPPUserRegistration.h"
 

	
src/tests/component.cpp
Show inline comments
 
#include "transport/userregistry.h"
 
#include "transport/config.h"
 
#include "transport/transport.h"
 
#include "transport/conversation.h"
 
#include "transport/localbuddy.h"
 
#include <cppunit/TestFixture.h>
 
#include <cppunit/extensions/HelperMacros.h>
 
#include <Swiften/Swiften.h>
src/tests/config.cpp
Show inline comments
 
#include "transport/userregistry.h"
 
#include "transport/config.h"
 
#include "transport/storagebackend.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/conversation.h"
 
#include "transport/usermanager.h"
 
#include "transport/localbuddy.h"
 
#include <cppunit/TestFixture.h>
 
#include <cppunit/extensions/HelperMacros.h>
 
#include <Swiften/Swiften.h>
 
@@ -18,7 +10,6 @@
 
#include "Swiften/Parser/PayloadParsers/FullPayloadParserFactoryCollection.h"
 
#include "basictest.h"
 

	
 
#include "transport/util.h"
 

	
 
using namespace Transport;
 

	
src/tests/conversationmanager.cpp
Show inline comments
 
#include "transport/userregistry.h"
 
#include "transport/config.h"
 
#include "transport/storagebackend.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/conversation.h"
 
#include "transport/usermanager.h"
 
#include "transport/conversationmanager.h"
 
#include "transport/localbuddy.h"
 
#include <cppunit/TestFixture.h>
 
#include <cppunit/extensions/HelperMacros.h>
 
#include <Swiften/Swiften.h>
src/tests/discoitemsresponder.cpp
Show inline comments
 
#include "transport/userregistry.h"
 
#include "transport/userregistration.h"
 
#include "transport/config.h"
 
#include "transport/storagebackend.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/conversation.h"
 
#include "transport/usermanager.h"
 
#include "transport/localbuddy.h"
 
#include <cppunit/TestFixture.h>
 
#include <cppunit/extensions/HelperMacros.h>
 
#include <Swiften/Swiften.h>
src/tests/gatewayresponder.cpp
Show inline comments
 
#include "transport/userregistry.h"
 
#include "transport/config.h"
 
#include "transport/storagebackend.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/conversation.h"
 
#include "transport/rosterresponder.h"
 
#include "transport/usermanager.h"
 
#include "transport/localbuddy.h"
 
#include "gatewayresponder.h"
 
#include <cppunit/TestFixture.h>
 
#include <cppunit/extensions/HelperMacros.h>
src/tests/localbuddy.cpp
Show inline comments
 
#include "transport/userregistry.h"
 
#include "transport/config.h"
 
#include "transport/storagebackend.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/conversation.h"
 
#include "transport/usermanager.h"
 
#include "transport/localbuddy.h"
 
#include <cppunit/TestFixture.h>
 
#include <cppunit/extensions/HelperMacros.h>
 
#include <Swiften/Swiften.h>
src/tests/networkpluginserver.cpp
Show inline comments
 
#include "transport/userregistry.h"
 
#include "transport/userregistration.h"
 
#include "transport/config.h"
 
#include "transport/storagebackend.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/conversation.h"
 
#include "transport/usermanager.h"
 
#include "transport/localbuddy.h"
 
#include "transport/protocol.pb.h"
 
#include "transport/networkpluginserver.h"
 
#include <cppunit/TestFixture.h>
 
#include <cppunit/extensions/HelperMacros.h>
 
#include <Swiften/Swiften.h>
 
@@ -24,6 +13,7 @@
 
#include <cppunit/Test.h>
 
#include <time.h>    // for clock()
 
#include <stdint.h>
 
#include "transport/protocol.pb.h"
 

	
 
using namespace Transport;
 

	
src/tests/rostermanager.cpp
Show inline comments
 
#include "transport/userregistry.h"
 
#include "transport/config.h"
 
#include "transport/storagebackend.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/conversation.h"
 
#include "transport/usermanager.h"
 
#include "transport/localbuddy.h"
 
#include <cppunit/TestFixture.h>
 
#include <cppunit/extensions/HelperMacros.h>
 
#include <Swiften/Swiften.h>
src/tests/rosterresponder.cpp
Show inline comments
 
#include "transport/userregistry.h"
 
#include "transport/config.h"
 
#include "transport/storagebackend.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/conversation.h"
 
#include "transport/rosterresponder.h"
 
#include "transport/usermanager.h"
 
#include "transport/localbuddy.h"
 
#include <cppunit/TestFixture.h>
 
#include <cppunit/extensions/HelperMacros.h>
 
#include <Swiften/Swiften.h>
src/tests/settingsadhoccommand.cpp
Show inline comments
 
#include "transport/userregistry.h"
 
#include "transport/userregistration.h"
 
#include "transport/config.h"
 
#include "transport/storagebackend.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/conversation.h"
 
#include "transport/usermanager.h"
 
#include "transport/localbuddy.h"
 
#include "settingsadhoccommand.h"
 
#include "adhocmanager.h"
 
#include <cppunit/TestFixture.h>
src/tests/stringtreeparser.cpp
Show inline comments
 
#include "transport/userregistry.h"
 
#include "transport/config.h"
 
#include "transport/storagebackend.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/storagebackend.h"
 
#include "transport/conversation.h"
 
#include "transport/usermanager.h"
 
#include "transport/localbuddy.h"
 
#include <cppunit/TestFixture.h>
 
#include <cppunit/extensions/HelperMacros.h>
 
#include <Swiften/Swiften.h>
 
@@ -20,7 +11,7 @@
 
#include "Swiften/Parser/PayloadParsers/FullPayloadParserFactoryCollection.h"
 
#include "basictest.h"
 

	
 
#include "transport/util.h"
 
#include "transport/Util.h"
 

	
 
using namespace Transport;
 

	
src/tests/user.cpp
Show inline comments
 
#include "transport/userregistry.h"
 
#include "transport/config.h"
 
#include "transport/storagebackend.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/conversation.h"
 
#include "transport/usermanager.h"
 
#include "transport/localbuddy.h"
 
#include <cppunit/TestFixture.h>
 
#include <cppunit/extensions/HelperMacros.h>
 
#include <Swiften/Swiften.h>
src/tests/usermanager.cpp
Show inline comments
 
#include "transport/userregistry.h"
 
#include "transport/config.h"
 
#include "transport/storagebackend.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/conversation.h"
 
#include "transport/usermanager.h"
 
#include "transport/localbuddy.h"
 
#include <cppunit/TestFixture.h>
 
#include <cppunit/extensions/HelperMacros.h>
 
#include <Swiften/Swiften.h>
src/tests/userregistration.cpp
Show inline comments
 
#include "transport/userregistry.h"
 
#include "transport/userregistration.h"
 
#include "transport/config.h"
 
#include "transport/storagebackend.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/conversation.h"
 
#include "transport/usermanager.h"
 
#include "transport/localbuddy.h"
 
#include <cppunit/TestFixture.h>
 
#include <cppunit/extensions/HelperMacros.h>
 
#include <Swiften/Swiften.h>
src/tests/userregistry.cpp
Show inline comments
 
#include "transport/userregistry.h"
 
#include "transport/config.h"
 
#include <cppunit/TestFixture.h>
 
#include <cppunit/extensions/HelperMacros.h>
 
#include <Swiften/EventLoop/DummyEventLoop.h>
 
@@ -8,6 +6,7 @@
 
#include <Swiften/Network/DummyConnectionServer.h>
 
#include <Swiften/Network/ConnectionFactory.h>
 
#include <Swiften/Network/DummyTimerFactory.h>
 
#include "basictest.h"
 

	
 
using namespace Transport;
 

	
src/tests/util.cpp
Show inline comments
 
#include "transport/userregistry.h"
 
#include "transport/config.h"
 
#include "transport/storagebackend.h"
 
#include "transport/user.h"
 
#include "transport/transport.h"
 
#include "transport/storagebackend.h"
 
#include "transport/conversation.h"
 
#include "transport/usermanager.h"
 
#include "transport/localbuddy.h"
 
#include <cppunit/TestFixture.h>
 
#include <cppunit/extensions/HelperMacros.h>
 
#include <Swiften/Swiften.h>
 
@@ -20,7 +11,6 @@
 
#include "basictest.h"
 
#include "transport/utf8.h"
 

	
 
#include "transport/util.h"
 

	
 
using namespace Transport;
 

	
0 comments (0 inline, 0 general)