?? factory.h
字號:
// Factory.h: interface for the Factory class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_FACTORY_H__F57BCAA2_8AC4_4975_AA80_06C0EFBC6395__INCLUDED_)
#define AFX_FACTORY_H__F57BCAA2_8AC4_4975_AA80_06C0EFBC6395__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include"Officer.h"
#include "President.h"
#include"AttorneyGeneral.h"
#include"MinorityPartyCongressPerson.h"
class Factory
{
public:
Factory();
virtual ~Factory();
virtual Officer* CreateOfficer(OfficialType)=0;
protected:
Officer* m_pProtoType[4];
};
#endif // !defined(AFX_FACTORY_H__F57BCAA2_8AC4_4975_AA80_06C0EFBC6395__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -