summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Elements/PubSubEventRetract.h')
-rw-r--r--Swiften/Elements/PubSubEventRetract.h37
1 files changed, 18 insertions, 19 deletions
diff --git a/Swiften/Elements/PubSubEventRetract.h b/Swiften/Elements/PubSubEventRetract.h
index 45c9a1f..b0aea96 100644
--- a/Swiften/Elements/PubSubEventRetract.h
+++ b/Swiften/Elements/PubSubEventRetract.h
@@ -1,36 +1,35 @@
/*
- * Copyright (c) 2013 Isode Limited.
+ * Copyright (c) 2013-2016 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/Base/Override.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;
+ };
}