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

📄 visitor.hpp

📁 深入浅出设计模式(书配套c++源代码)。包含20个设计模式的c++实现。
💻 HPP
字号:
#ifndef	_HFDP_CPP_INTERPRETER_MINI_DUCK_SIMULATOR_VISITOR_HPP_
#define _HFDP_CPP_INTERPRETER_MINI_DUCK_SIMULATOR_VISITOR_HPP_

#include "MiniDuckSimulator.hpp"

namespace HeadFirstDesignPatterns {
namespace Interpreter {
namespace MiniDuckSimulator {

class QuackCommand;
class FlyCommand;
class LeftCommand;
class RightCommand;
class DisplayCommand;
class SwimCommand;
class WhileCommand;
class Variable;

class Visitor {

	protected: explicit Visitor() {
	}
	public: virtual ~Visitor() = 0 {
	}
	public: virtual void interpret( DisplayCommand* command ) = 0;
	public: virtual void interpret( QuackCommand* command ) = 0;
	public: virtual void interpret( FlyCommand* command ) = 0;
	public: virtual void interpret( LeftCommand* command ) = 0;
	public: virtual void interpret( RightCommand* command ) = 0;
	public: virtual void interpret( SwimCommand* command ) = 0;
	public: virtual void interpret( WhileCommand* command ) = 0;
};

} // namespace MiniDuckSimulator
} // namespace Interpreter
} // namespace HeadFirstDesignPatterns

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -