diff options
Diffstat (limited to 'Swiften/Elements/PubSubConfigure.h')
-rw-r--r-- | Swiften/Elements/PubSubConfigure.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/Swiften/Elements/PubSubConfigure.h b/Swiften/Elements/PubSubConfigure.h index 4cd219c..e8f3cbc 100644 --- a/Swiften/Elements/PubSubConfigure.h +++ b/Swiften/Elements/PubSubConfigure.h @@ -14,23 +14,23 @@ #include <Swiften/Elements/Payload.h> namespace Swift { - class SWIFTEN_API PubSubConfigure : public Payload { - public: - - PubSubConfigure(); - - virtual ~PubSubConfigure(); + class SWIFTEN_API PubSubConfigure : public Payload { + public: - boost::shared_ptr<Form> getData() const { - return data; - } + PubSubConfigure(); - void setData(boost::shared_ptr<Form> value) { - this->data = value ; - } + virtual ~PubSubConfigure(); + boost::shared_ptr<Form> getData() const { + return data; + } - private: - boost::shared_ptr<Form> data; - }; + void setData(boost::shared_ptr<Form> value) { + this->data = value ; + } + + + private: + boost::shared_ptr<Form> data; + }; } |