-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCPAR.h
57 lines (47 loc) · 852 Bytes
/
CPAR.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#ifndef CPAR_H
#define CPAR_H
class CPAR
{
public:
CPAR();
int grupo;
bool verificaTap();
bool verificaLoc();
bool verificaControleConjunto();
bool verificaControleIndividual();
bool verificaOltcMovimento();
bool verificaOpIncompleta();
bool verificaControleParalelismo();
private:
int tapPosR1;
bool locR1;
int modR1;
bool mvmR1;
bool cycAlmR1;
int tapPosR2;
bool locR2;
int modR2;
bool mvmR2;
bool cycAlmR2;
int tapPosR3;
bool locR3;
int modR3;
bool mvmR3;
bool cycAlmR3;
int tapPosR4;
bool locR4;
int modR4;
bool mvmR4;
bool cycAlmR4;
int tapPosR5;
bool locR5;
int modR5;
bool mvmR5;
bool cycAlmR5;
int tapPosRX;
bool locRX;
int modRX;
bool mvmRX;
bool cycAlmRX;
};
#endif // CPAR_H