summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Elements/PubSubOwnerRedirect.h')
-rw-r--r--Swiften/Elements/PubSubOwnerRedirect.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/Swiften/Elements/PubSubOwnerRedirect.h b/Swiften/Elements/PubSubOwnerRedirect.h
index 7659889..c481f98 100644
--- a/Swiften/Elements/PubSubOwnerRedirect.h
+++ b/Swiften/Elements/PubSubOwnerRedirect.h
@@ -13,23 +13,23 @@
#include <Swiften/Elements/Payload.h>
namespace Swift {
- class SWIFTEN_API PubSubOwnerRedirect : public Payload {
- public:
-
- PubSubOwnerRedirect();
-
- virtual ~PubSubOwnerRedirect();
+ class SWIFTEN_API PubSubOwnerRedirect : public Payload {
+ public:
- const std::string& getURI() const {
- return uri;
- }
+ PubSubOwnerRedirect();
- void setURI(const std::string& value) {
- this->uri = value ;
- }
+ virtual ~PubSubOwnerRedirect();
+ const std::string& getURI() const {
+ return uri;
+ }
- private:
- std::string uri;
- };
+ void setURI(const std::string& value) {
+ this->uri = value ;
+ }
+
+
+ private:
+ std::string uri;
+ };
}