📄 simulation_end_listener.hpp
字号:
#ifndef SIMULATOR_END_LISTENER_H #define SIMULATOR_END_LISTENER_H #include <boost/enable_shared_from_this.hpp> // SimulationEndHandler Interface class SimulationEndListener { public: virtual ~SimulationEndListener() {} virtual void simulationEndHandler() = 0; protected: SimulationEndListener() {} private: // Make the class unable to be copied SimulationEndListener(const SimulationEndListener& rhs); SimulationEndListener& operator= (const SimulationEndListener& rhs); }; typedef boost::shared_ptr<SimulationEndListener> SimulationEndListenerPtr; #endif // SIMULATOR_END_LISTENER_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -