📄 tv.hpp
字号:
#ifndef _HFDP_CPP_BRIDGE_TV_HPP_#define _HFDP_CPP_BRIDGE_TV_HPP_#include "Remotes.hpp"namespace HeadFirstDesignPatterns {namespace Bridge {namespace Remotes {class TV { protected: TV() { } public: virtual ~TV() = 0 { } public: virtual void on() = 0; public: virtual void off() = 0; public: virtual void tuneChannel( unsigned int channel ) = 0;};} // namespace Remotes} // namespace Bridge} // namespace HeadFirstDesignPatterns#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -