-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathcommand.cc
More file actions
70 lines (57 loc) · 927 Bytes
/
command.cc
File metadata and controls
70 lines (57 loc) · 927 Bytes
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#include <iostream>
#include "command.h"
using namespace std;
void Reciever::Action()
{
cout << "Do action" << endl;
}
Read_Command::Read_Command(Reciever* rev)
{
this->m_pRev = rev;
}
void Read_Command::Execute()
{
cout << "Read command..." << endl;
m_pRev->Action();
}
Read_Command::~Read_Command()
{
delete m_pRev;
}
Write_Command::Write_Command(Reciever* rev)
{
this->m_pRev = rev;
}
void Write_Command::Execute()
{
cout << "Write command..." << endl;
m_pRev->Action();
}
Write_Command::~Write_Command()
{
delete m_pRev;
}
Invoker::Invoker(Command* cmd)
{
m_pCmd = cmd;
}
void Invoker::Notify()
{
list<Command*>::iterator it = m_lCmdList.begin();
for(; it != m_lCmdList.end(); ++it) {
m_pCmd = *it;
m_pCmd->Execute();
}
}
void Invoker::AddCmd(Command* cmd)
{
m_lCmdList.push_back(cmd);
}
void Invoker::DelCmd(Command* cmd)
{
m_lCmdList.remove(cmd);
}
Invoker::~Invoker()
{
delete m_pCmd;
}