attorneygeneral.h
来自「设计模式实例: 远行(ProtoType)模式源代码」· C头文件 代码 · 共 26 行
H
26 行
// 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();
Officer* Clone();
};
#endif // !defined(AFX_ATTORNEYGENERAL_H__27B94434_BECE_4C7E_978F_EA51D25EDC13__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?