blob: 322dd782f21981a648d2838e4528ae84d1a2e5df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include "Swiften/JID/JID.h"
#include "Swift/Controllers/UIEvents/UIEvent.h"
namespace Swift {
class RequestChatUIEvent : public UIEvent {
public:
RequestChatUIEvent(const JID& contact) : contact_(contact) {};
JID getContact() {return contact_;}
private:
JID contact_;
};
}
|