mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-05 19:05:32 +00:00
105032f08a
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
25 lines
453 B
C++
25 lines
453 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include <functional>
|
|
|
|
namespace EightBit {
|
|
template<class T> class Signal {
|
|
private:
|
|
typedef std::function<void(const T&)> delegate_t;
|
|
typedef std::vector<delegate_t> delegates_t;
|
|
|
|
delegates_t delegates;
|
|
|
|
public:
|
|
void connect(delegate_t functor) {
|
|
delegates.push_back(functor);
|
|
}
|
|
|
|
void fire(const T& e) const {
|
|
if (!delegates.empty())
|
|
for (auto& delegate : delegates)
|
|
delegate(e);
|
|
}
|
|
};
|
|
} |