Terminal.hpp
662 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
// Terminal class header file.
// Forward declaration for messages
class TerminalCreateMsg;
class TerminalDeleteMsg;
class RunDiagnosticsMsg;
class Msg;
// Terminal class
class Terminal
{
enum { UNKNOWN = 0 };
enum {OUT_OF_SERVICE=1, INSERVICE=2};
//...
int terminalId;
int terminalType;
int terminalStatus;
void SendMessage(Msg *pMsg);
public:
void Activate(const TerminalCreateMsg *pMsg);
void Deactivate(const TerminalDeleteMsg *pMsg);
int HandleRunDiagnostics(const RunDiagnosticsMsg *pMsg);
int HandleOutOfService();
int HandleInService();
Terminal();
~Terminal();
};