-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKunde.cpp
115 lines (81 loc) · 1.9 KB
/
Kunde.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#include "Kunde.h"
#include "Verleih.h"
#include "Tokenizer.h"
#include <cstdlib>
int Kunde::_number = 1;
Kunde::Kunde() {
_name = "";
_ort = "";
_id = 0;
_preisStrategie = new PreisStrategie;
}
Kunde::Kunde(string name, string ort, int typ) {
_name = name;
_ort = ort;
_id = Kunde::_number++;
_preisStrategie = PreisStrategie::itoPS(typ);
}
Kunde::Kunde(string name, string ort, int typ, int id) {
_name = name;
_ort = ort;
_id = id;
_preisStrategie = PreisStrategie::itoPS(typ);
if (id >= _number)
_number = id + 1;
}
void Kunde::setzeName(string n) {
_name = n;
}
void Kunde::setzeOrt(string o) {
_ort = o;
}
void Kunde::setzePStrat(PreisStrategie *ps) {
_preisStrategie = ps;
}
void Kunde::ausleihen(AusleihPos *apos) {
_ausleihen.push_back(apos);
}
void Kunde::rueckgabe(AusleihPos *apos) {
vector<AusleihPos *>::iterator iter;
for(iter = _ausleihen.begin(); iter != _ausleihen.end(); iter++) {
if(*iter == apos)
break;
}
if(iter == _ausleihen.end())
throw "ERROR: no such AusleihPos found!!";
_ausleihen.erase(iter);
}
vector<AusleihPos *> Kunde::holeAusleihen() {
return _ausleihen;
}
int Kunde::ident() {
return _id;
}
int Kunde::getTyp() {
return _preisStrategie->typ();
}
string Kunde::toString() {
ostringstream os;
os << _id << ":" << _name << ":" << _ort << ":" << _preisStrategie->typ();
return os.str();
}
Kunde Kunde::parse(string kunde) {
string idStr, name, ort, typStr;
int id, typ;
Tokenizer tok(kunde, ':');
id = atoi((tok.getSubstr()).c_str());
name = tok.getSubstr();
ort = tok.getSubstr();
typ = atoi((tok.getSubstr()).c_str());
Kunde k(name, ort, typ, id);
return k;
}
int Kunde::preis(CD cd, Date tag) {
return _preisStrategie->preis(cd, tag);
}
string Kunde::name() {
return _name;
}
string Kunde::ort() {
return _ort;
}