diff options
Diffstat (limited to 'Swift/Controllers/UIEvents/RequestChatUIEvent.h')
| -rw-r--r-- | Swift/Controllers/UIEvents/RequestChatUIEvent.h | 17 | 
1 files changed, 17 insertions, 0 deletions
diff --git a/Swift/Controllers/UIEvents/RequestChatUIEvent.h b/Swift/Controllers/UIEvents/RequestChatUIEvent.h new file mode 100644 index 0000000..529f498 --- /dev/null +++ b/Swift/Controllers/UIEvents/RequestChatUIEvent.h @@ -0,0 +1,17 @@ +//Not used yet. + +#pragma once + +#include "Swiften/Base/String.h" + +#include "Swift/Controllers/UIEvents/UIEvent.h" + +namespace Swift { +	class RequestChatUIEvent : public UIEvent { +		public: +			RequestChatUIEvent(const String& contact) : contact_(contact) {}; +			String getContact() {return contact_;} +		private: +			String contact_; +	}; +}  | 
 Swift