forked from jaredtao/DesignPattern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDayState.h
35 lines (32 loc) · 796 Bytes
/
DayState.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#pragma once
#include "IContext.h"
#include "IState.h"
class DayState : public IState
{
public:
static DayState &GetInstance()
{
static DayState s;
return s;
}
virtual void doColock(IContext *ctx, int hour) override;
virtual void doUse(IContext *ctx) override
{
ctx->recoderLog("Day use ");
}
virtual void doAlarm(IContext *ctx) override
{
ctx->callSecurityCenter("Day alarm");
}
virtual void doPhone(IContext *ctx) override
{
ctx->callSecurityCenter("Day phone");
}
~DayState() = default;
DayState(const DayState &) = delete;
DayState(DayState &&) = delete;
DayState &operator=(const DayState &) = delete;
DayState &operator=(DayState &&) = delete;
protected:
DayState() {}
};