2 Star 7 Fork 617

ALONE_WORK/DesignPattern

forked from Micooz/DesignPattern 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Visitor.h 535 Bytes
一键复制 编辑 原始数据 按行查看 历史
Micooz 提交于 2014-10-09 10:37 . 加入访问者模式,责任链模式
#pragma once
#include "Element.h"
class Element;
class Visitor {
public:
virtual ~Visitor();
virtual void VisitConcreteElementA(Element* elm) = 0;
virtual void VisitConcreteElementB(Element* elm) = 0;
protected:
Visitor();
};
class ConcreteVisitorA :public Visitor {
public:
void VisitConcreteElementA(Element* elm);
void VisitConcreteElementB(Element* elm);
};
class ConcreteVisitorB :public Visitor {
public:
void VisitConcreteElementA(Element* elm);
void VisitConcreteElementB(Element* elm);
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/ALONE_WORK/DesignPattern.git
git@gitee.com:ALONE_WORK/DesignPattern.git
ALONE_WORK
DesignPattern
DesignPattern
master

搜索帮助