19 Star 45 Fork 32

留天下/CM-Server

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
signal.h 545 Bytes
一键复制 编辑 原始数据 按行查看 历史
留天下 提交于 2019-02-18 15:15 . net redo
#ifndef __SIGNAL_H__
#define __SIGNAL_H__
#include"event.h"
#include<list>
class Signal:public SlotListener
{
public:
Signal();
virtual ~Signal();
virtual void removeSlot(const long long int& slotId);
Slot* add(const EventHandler& handler);
Slot* addOnce(const EventHandler& handler);
Slot* add(const std::function<void(Json::Value&)>&);
Slot* addOnce(const std::function<void(Json::Value&)>& func);
void dispatch(Json::Value & message);
private:
std::list<Slot*> m_slots;
};
#endif // !__SIGNAL_H__
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/lsylovews/CM-Server.git
git@gitee.com:lsylovews/CM-Server.git
lsylovews
CM-Server
CM-Server
master

搜索帮助