i2pd/Event.h

38 lines
613 B
C
Raw Normal View History

2016-10-20 16:12:15 +03:00
#ifndef EVENT_H__
#define EVENT_H__
#include <map>
#include <string>
#include <memory>
#include <boost/asio.hpp>
typedef std::map<std::string, std::string> EventType;
namespace i2p
{
2016-11-01 17:26:40 +03:00
namespace event
{
class EventListener {
public:
virtual ~EventListener() {};
virtual void HandleEvent(const EventType & ev) = 0;
};
2016-10-20 16:12:15 +03:00
2016-11-01 17:26:40 +03:00
class EventCore
{
public:
void QueueEvent(const EventType & ev);
void SetListener(EventListener * l);
private:
EventListener * m_listener = nullptr;
};
2016-11-01 20:57:25 +03:00
#ifdef WITH_EVENTS
2016-11-01 17:26:40 +03:00
extern EventCore core;
2016-11-01 20:57:25 +03:00
#endif
2016-11-01 17:26:40 +03:00
}
2016-10-20 16:12:15 +03:00
}
void EmitEvent(const EventType & ev);
#endif