component.h

来自「23中设计模式大家都应该知道吧」· 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 //~_COMPONENT_H_

⌨️ 快捷键说明

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