-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAusleihPos.cpp
57 lines (39 loc) · 958 Bytes
/
AusleihPos.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
#include "AusleihPos.h"
#include "Verleih.h"
#include "Tokenizer.h"
AusleihPos::AusleihPos(CD c, Kunde k, Date d) {
_cd = c;
_kunde = k;
_tagDerAusleihe = d;
_kunde.ausleihen(this);
_cd.ausleihen(this);
}
AusleihPos AusleihPos::parse(string a) {
string kunde, cd, tag;
Tokenizer tok(a, ';');
cd = tok.getSubstr();
kunde = tok.getSubstr();
tag = tok.getSubstr();
AusleihPos apos(CD::parse(cd), Kunde::parse(kunde), *DateFormatDE::parse(tag));
return apos;
}
Kunde *AusleihPos::getKunde() {
return &_kunde;
}
CD *AusleihPos::getCD() {
return &_cd;
}
Date AusleihPos::getDate() {
return _tagDerAusleihe;
}
string AusleihPos::toString() {
stringstream os;
os << _cd.toString() << ";" << _kunde.toString() << ";" << _tagDerAusleihe.toString();
return os.str();
}
int AusleihPos::identCD() {
return _cd.ident();
}
int AusleihPos::identKunde() {
return _kunde.ident();
}