-
Notifications
You must be signed in to change notification settings - Fork 0
/
Poste.cpp
83 lines (69 loc) · 1.74 KB
/
Poste.cpp
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
71
72
73
74
75
76
77
78
79
80
81
82
83
#include <iostream>
#include <string>
#include <cctype>
#include "Coda.cpp"
using namespace std;
class Poste {
private:
string servizio;
int nR = 0, nS = 0, nF = 0;
Coda cR = Coda(1000, "ricezione");
Coda cS = Coda(1000, "spedizione");
Coda cF = Coda(1000, "finanzarie");
public:
Poste(string servizio){
this->servizio = servizio;
addClient(tolower(servizio[0]));
//addClient(servizio[0]);
/*
if (servizio == "spedizione"){
addClient('s');
} else if (servizio == "ricezione"){
addClient('r');
} else if (servizio == "finanzarie"){
addClient('f');
} else {
cout << "Servizio non disponibile" << endl;
}
*/
}
int addClient(char service){
switch (service)
{
case 's':
cR.enter(++nR);
spedizione();
return cR.exit();
case 'r':
cS.enter(++nS);
ricezione();
return cS.exit();
case 'f':
cF.enter(++nF);
finanzarie();
return cF.exit();
default:
cout << "Servizio non disponibile" << endl;
return -1;
}
}
void spedizione(){
cout << "Servizio di spedizione" << endl;
}
void ricezione(){
cout << "Servizio di ricezione" << endl;
}
void finanzarie(){
cout << "Servizio finanzarie" << endl;
}
void stampa(){
cout << "Servizio di " << servizio << endl;
cout << "Clienti in coda: " << endl;
cout << "Ricezione: ";
cR.stampa();
cout << "Spedizione: ";
cS.stampa();
cout << "Finanzarie: ";
cF.stampa();
}
};