simulation_end_listener.hpp
来自「RFID reader 语 tag 模拟器」· HPP 代码 · 共 33 行
HPP
33 行
#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 + =
减小字号Ctrl + -
显示快捷键?