diff options
Diffstat (limited to 'Swift/Controllers/UIEvents/JoinMUCUIEvent.h')
-rw-r--r-- | Swift/Controllers/UIEvents/JoinMUCUIEvent.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Swift/Controllers/UIEvents/JoinMUCUIEvent.h b/Swift/Controllers/UIEvents/JoinMUCUIEvent.h index 0bdfef1..4ebf1f1 100644 --- a/Swift/Controllers/UIEvents/JoinMUCUIEvent.h +++ b/Swift/Controllers/UIEvents/JoinMUCUIEvent.h @@ -4,10 +4,9 @@ * See Documentation/Licenses/GPLv3.txt for more information. */ -//Not used yet. - #pragma once +#include <boost/optional.hpp> #include "Swiften/Base/String.h" #include "Swift/Controllers/UIEvents/UIEvent.h" @@ -15,11 +14,11 @@ namespace Swift { class JoinMUCUIEvent : public UIEvent { public: - JoinMUCUIEvent(const JID& jid, const String& contact) : jid_(jid), contact_(contact) {}; - String getContact() {return contact_;}; + JoinMUCUIEvent(const JID& jid, const boost::optional<String>& nick) : jid_(jid), nick_(nick) {}; + boost::optional<String> getNick() {return nick_;}; JID getJID() {return jid_;}; private: - String contact_; JID jid_; + boost::optional<String> nick_; }; } |