架构模式--C++类模板实现事件触发机制
//带一个参数的事件触发器templateclass CEvent{private: typedef void (*Handle)(PTR);public: CEvent(Handle handle) { _handleVec.push_back(handle); } CEvent(){