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