minerswifeownedstates.h
来自「系列三 看过这些之后 会对编程的概念和理解更加深刻的 不多 一定要仔细看才」· C头文件 代码 · 共 98 行
H
98 行
#ifndef MINERSWIFE_OWNED_STATES_H
#define MINERSWIFE_OWNED_STATES_H
//------------------------------------------------------------------------
//
// Name: MinersWifeOwnedStates.h
//
// Desc: All the states that can be assigned to the MinersWife class
//
// Author: Mat Buckland 2002 (fup@ai-junkie.com)
//
//------------------------------------------------------------------------
#include "State.h"
class MinersWife;
//------------------------------------------------------------------------
//
//------------------------------------------------------------------------
class WifesGlobalState : public State<MinersWife>
{
private:
WifesGlobalState(){}
//copy ctor and assignment should be private
WifesGlobalState(const WifesGlobalState&);
WifesGlobalState& operator=(const WifesGlobalState&);
public:
static WifesGlobalState* Instance();
virtual void Enter(MinersWife* wife){}
virtual void Execute(MinersWife* wife);
virtual void Exit(MinersWife* wife){}
};
//------------------------------------------------------------------------
//
//------------------------------------------------------------------------
class DoHouseWork : public State<MinersWife>
{
private:
DoHouseWork(){}
//copy ctor and assignment should be private
DoHouseWork(const DoHouseWork&);
DoHouseWork& operator=(const DoHouseWork&);
public:
static DoHouseWork* Instance();
virtual void Enter(MinersWife* wife);
virtual void Execute(MinersWife* wife);
virtual void Exit(MinersWife* wife);
};
//------------------------------------------------------------------------
//
//------------------------------------------------------------------------
class VisitBathroom : public State<MinersWife>
{
private:
VisitBathroom(){}
//copy ctor and assignment should be private
VisitBathroom(const VisitBathroom&);
VisitBathroom& operator=(const VisitBathroom&);
public:
static VisitBathroom* Instance();
virtual void Enter(MinersWife* wife);
virtual void Execute(MinersWife* wife);
virtual void Exit(MinersWife* wife);
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?