summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2015-09-15 10:48:47 (GMT)
committerKevin Smith <kevin.smith@isode.com>2015-09-22 15:57:47 (GMT)
commitc310a15daeb18a441a30cbd7fbdc14a2eea957f9 (patch)
treebdc6e6facc6febc60ec1066d9734d2bb5932eedf
parent4f2824b115a9c713e6439d91360a7c7362522b91 (diff)
downloadswift-c310a15daeb18a441a30cbd7fbdc14a2eea957f9.zip
swift-c310a15daeb18a441a30cbd7fbdc14a2eea957f9.tar.bz2
Add explicit includes for classes used in PlatformTLSFactories
Furthermore removed unneeded includes. Test-Information: Still builds and unit tests pass. Change-Id: Ic7272e754c488f427b5ee6834f1d892028ea285d
-rw-r--r--Swiften/TLS/PlatformTLSFactories.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/Swiften/TLS/PlatformTLSFactories.cpp b/Swiften/TLS/PlatformTLSFactories.cpp
index 0ad8fc6..2492840 100644
--- a/Swiften/TLS/PlatformTLSFactories.cpp
+++ b/Swiften/TLS/PlatformTLSFactories.cpp
@@ -1,22 +1,22 @@
/*
- * Copyright (c) 2010 Isode Limited.
+ * Copyright (c) 2010-2015 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
-#include <Swiften/Base/Platform.h>
#include <Swiften/TLS/PlatformTLSFactories.h>
-#include <cstring>
-#include <cassert>
+#include <Swiften/Base/Platform.h>
+#include <Swiften/TLS/CertificateFactory.h>
+#include <Swiften/TLS/TLSContextFactory.h>
#ifdef HAVE_OPENSSL
- #include "Swiften/TLS/OpenSSL/OpenSSLContextFactory.h"
- #include "Swiften/TLS/OpenSSL/OpenSSLCertificateFactory.h"
+ #include <Swiften/TLS/OpenSSL/OpenSSLContextFactory.h>
+ #include <Swiften/TLS/OpenSSL/OpenSSLCertificateFactory.h>
#endif
#ifdef HAVE_SCHANNEL
- #include "Swiften/TLS/Schannel/SchannelContextFactory.h"
- #include "Swiften/TLS/Schannel/SchannelCertificateFactory.h"
+ #include <Swiften/TLS/Schannel/SchannelContextFactory.h>
+ #include <Swiften/TLS/Schannel/SchannelCertificateFactory.h>
#endif
namespace Swift {