summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Elements/PubSubEventRetract.h')
-rw-r--r--Swiften/Elements/PubSubEventRetract.h38
1 files changed, 18 insertions, 20 deletions
diff --git a/Swiften/Elements/PubSubEventRetract.h b/Swiften/Elements/PubSubEventRetract.h
index 3c2d9c4..19e02c9 100644
--- a/Swiften/Elements/PubSubEventRetract.h
+++ b/Swiften/Elements/PubSubEventRetract.h
@@ -1,36 +1,34 @@
/*
- * Copyright (c) 2013 Remko Tronçon
- * Licensed under the GNU General Public License.
+ * Copyright (c) 2013-2017 Isode Limited.
+ * All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
-#include <Swiften/Base/Override.h>
+#include <string>
+
#include <Swiften/Base/API.h>
#include <Swiften/Elements/Payload.h>
-#include <string>
+namespace Swift {
+ class SWIFTEN_API PubSubEventRetract : public Payload {
+ public:
+ PubSubEventRetract();
-namespace Swift {
- class SWIFTEN_API PubSubEventRetract : public Payload {
- public:
-
- PubSubEventRetract();
-
- virtual ~PubSubEventRetract();
+ virtual ~PubSubEventRetract();
- const std::string& getID() const {
- return id;
- }
+ const std::string& getID() const {
+ return id;
+ }
- void setID(const std::string& value) {
- this->id = value ;
- }
+ void setID(const std::string& value) {
+ this->id = value ;
+ }
- private:
- std::string id;
- };
+ private:
+ std::string id;
+ };
}