diff options
Diffstat (limited to 'Swiften/Elements/Subject.h')
-rw-r--r-- | Swiften/Elements/Subject.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/Swiften/Elements/Subject.h b/Swiften/Elements/Subject.h index 982ce3b..4f9444a 100644 --- a/Swiften/Elements/Subject.h +++ b/Swiften/Elements/Subject.h @@ -12,20 +12,20 @@ #include <Swiften/Elements/Payload.h> namespace Swift { - class SWIFTEN_API Subject : public Payload { - public: - Subject(const std::string& text = "") : text_(text) { - } + class SWIFTEN_API Subject : public Payload { + public: + Subject(const std::string& text = "") : text_(text) { + } - void setText(const std::string& text) { - text_ = text; - } + void setText(const std::string& text) { + text_ = text; + } - const std::string& getText() const { - return text_; - } + const std::string& getText() const { + return text_; + } - private: - std::string text_; - }; + private: + std::string text_; + }; } |