diff options
Diffstat (limited to 'Swiften/Elements/PubSubEventRetract.h')
-rw-r--r-- | Swiften/Elements/PubSubEventRetract.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/Swiften/Elements/PubSubEventRetract.h b/Swiften/Elements/PubSubEventRetract.h index 6681061..b0aea96 100644 --- a/Swiften/Elements/PubSubEventRetract.h +++ b/Swiften/Elements/PubSubEventRetract.h @@ -13,23 +13,23 @@ #include <Swiften/Elements/Payload.h> namespace Swift { - class SWIFTEN_API PubSubEventRetract : public Payload { - public: - - PubSubEventRetract(); - - virtual ~PubSubEventRetract(); + class SWIFTEN_API PubSubEventRetract : public Payload { + public: - const std::string& getID() const { - return id; - } + PubSubEventRetract(); - void setID(const std::string& value) { - this->id = value ; - } + virtual ~PubSubEventRetract(); + const std::string& getID() const { + return id; + } - private: - std::string id; - }; + void setID(const std::string& value) { + this->id = value ; + } + + + private: + std::string id; + }; } |