component.h

来自「设计模式全部演示代码,都可以编译通过,通过这些例子,在研究c++下的设计模式,特」· C头文件 代码 · 共 19 行

H
19
字号
//Component.h
#ifndef _COMPONENT_H_ 
#define _COMPONENT_H_

class Component 
{ 
public:
	Component();
	virtual ~Component();
public: 
	virtual void Operation() = 0;
	virtual void Add(const Component& );
	virtual void Remove(const Component& );
	virtual Component* GetChild(int );
protected:
private:
};

#endif

⌨️ 快捷键说明

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