remote.hpp
来自「一个类似遥控器的源码程序。可以有多种功能」· HPP 代码 · 共 34 行
HPP
34 行
#ifndef _HEAD_FIRST_DESIGN_PATTERNS_COMMAND_REMOTE_HPP_
#define _HEAD_FIRST_DESIGN_PATTERNS_COMMAND_REMOTE_HPP_
#include <iostream>
#include <sstream>
#include <string>
#include <typeinfo>
#include <vector>
#include "Light.hpp"
#include "CeilingFan.hpp"
#include "GarageDoor.hpp"
#include "Hottub.hpp"
#include "Stereo.hpp"
#include "TV.hpp"
#include "Command.hpp"
#include "NoCommand.hpp"
#include "CeilingFanOffCommand.hpp"
#include "CeilingFanOnCommand.hpp"
#include "GarageDoorDownCommand.hpp"
#include "GarageDoorUpCommand.hpp"
#include "HottubOffCommand.hpp"
#include "HottubOnCommand.hpp"
#include "LightOffCommand.hpp"
#include "LightOnCommand.hpp"
#include "LivingroomLightOffCommand.hpp"
#include "LivingroomLightOnCommand.hpp"
#include "StereoOffCommand.hpp"
#include "StereoOnWithCDCommand.hpp"
#include "RemoteControl.hpp"
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?