blob: dc6fe5d88172e25e1a69588273393fa6e7111dc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#pragma once
#include "Swiften/Base/String.h"
#include "Swiften/Elements/Presence.h"
#include <map>
#include <boost/signal.hpp>
namespace Swift {
class StanzaChannel;
class PresenceOracle {
public:
PresenceOracle(StanzaChannel* stanzaChannel);
~PresenceOracle() {};
void cancelSubscription(const JID& jid);
void confirmSubscription(const JID& jid);
void requestSubscription(const JID& jid);
boost::signal<void (boost::shared_ptr<Presence>, boost::shared_ptr<Presence>)> onPresenceChange;
boost::signal<void (const JID&, const String&)> onPresenceSubscriptionRequest;
private:
void handleIncomingPresence(boost::shared_ptr<Presence> presence);
std::map<JID, std::map<JID, boost::shared_ptr<Presence> > > entries_;
StanzaChannel* stanzaChannel_;
};
}
|