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