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

📄 attorneygeneral.h

📁 设计模式实例: 工厂方法(Factory)源代码)
💻 H
字号:
// AttorneyGeneral.h: interface for the AttorneyGeneral class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_ATTORNEYGENERAL_H__27B94434_BECE_4C7E_978F_EA51D25EDC13__INCLUDED_)
#define AFX_ATTORNEYGENERAL_H__27B94434_BECE_4C7E_978F_EA51D25EDC13__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "Officer.h"

class AttorneyGeneral : public Officer  
{
public:
	AttorneyGeneral(char* pp);
	virtual ~AttorneyGeneral();

	void PartyLine();

};

#endif // !defined(AFX_ATTORNEYGENERAL_H__27B94434_BECE_4C7E_978F_EA51D25EDC13__INCLUDED_)

⌨️ 快捷键说明

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