summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Component')
-rw-r--r--Swiften/Component/Component.h7
-rw-r--r--Swiften/Component/CoreComponent.h19
2 files changed, 14 insertions, 12 deletions
diff --git a/Swiften/Component/Component.h b/Swiften/Component/Component.h
index c399645..9d8b5d3 100644
--- a/Swiften/Component/Component.h
+++ b/Swiften/Component/Component.h
@@ -1,14 +1,15 @@
/*
- * Copyright (c) 2010-2013 Isode Limited.
+ * Copyright (c) 2010-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
-#include <Swiften/Base/API.h>
#include <Swiften/Component/CoreComponent.h>
+#include <Swiften/Base/API.h>
+
namespace Swift {
class SoftwareVersionResponder;
@@ -21,7 +22,7 @@ namespace Swift {
class SWIFTEN_API Component : public CoreComponent {
public:
Component(const JID& jid, const std::string& secret, NetworkFactories* networkFactories);
- ~Component();
+ virtual ~Component();
/**
* Sets the software version of the client.
diff --git a/Swiften/Component/CoreComponent.h b/Swiften/Component/CoreComponent.h
index 61571f2..12b38eb 100644
--- a/Swiften/Component/CoreComponent.h
+++ b/Swiften/Component/CoreComponent.h
@@ -1,28 +1,29 @@
/*
- * Copyright (c) 2010-2013 Isode Limited.
+ * Copyright (c) 2010-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
+#include <string>
+
#include <boost/shared_ptr.hpp>
#include <Swiften/Base/API.h>
-#include <Swiften/Base/boost_bsignals.h>
#include <Swiften/Base/Error.h>
+#include <Swiften/Base/SafeByteArray.h>
+#include <Swiften/Base/boost_bsignals.h>
#include <Swiften/Component/ComponentConnector.h>
-#include <Swiften/Component/ComponentSession.h>
#include <Swiften/Component/ComponentError.h>
-#include <Swiften/Elements/Presence.h>
+#include <Swiften/Component/ComponentSession.h>
+#include <Swiften/Component/ComponentSessionStanzaChannel.h>
#include <Swiften/Elements/Message.h>
+#include <Swiften/Elements/Presence.h>
+#include <Swiften/Entity/Entity.h>
#include <Swiften/JID/JID.h>
-#include <string>
#include <Swiften/Parser/PayloadParsers/FullPayloadParserFactoryCollection.h>
#include <Swiften/Serializer/PayloadSerializers/FullPayloadSerializerCollection.h>
-#include <Swiften/Component/ComponentSessionStanzaChannel.h>
-#include <Swiften/Entity/Entity.h>
-#include <Swiften/Base/SafeByteArray.h>
namespace Swift {
class EventLoop;
@@ -44,7 +45,7 @@ namespace Swift {
class SWIFTEN_API CoreComponent : public Entity {
public:
CoreComponent(const JID& jid, const std::string& secret, NetworkFactories* networkFactories);
- ~CoreComponent();
+ virtual ~CoreComponent();
void connect(const std::string& host, int port);
void disconnect();