⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 remote.hpp

📁 一个类似遥控器的源码程序。可以有多种功能
💻 HPP
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -