summaryrefslogtreecommitdiffstats
blob: 529f498286f78aaadaf24a5f8ef9086dfb070199 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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_;
	};
}