-
Notifications
You must be signed in to change notification settings - Fork 0
/
CD.h
48 lines (37 loc) · 809 Bytes
/
CD.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
#ifndef __CD_H__
#define __CD_H__
#include <vector>
#include <string>
using namespace std;
class AusleihPos;
class CD {
protected:
static int _number;
int _id;
string _titel;
string _interpret;
int _typ;
int _basispreis;
int _strafeProTag;
int _dauer;
AusleihPos *_ausleihe;
public:
static const int NORMAL = 1;
static const int ANGEBOT = 2;
static const int BESTSELLER = 3;
CD();
CD(string titel, string interpret, int typ);
CD(string titel, string interpret, int typ, int id);
int ident();
string titel();
string interpret();
void setzeTyp(int typ);
int holeTyp();
void ausleihen(AusleihPos *apos);
void rueckgabe();
AusleihPos *holeAusleihe();
int preis(int dauer);
static CD parse(string cd);
string toString();
};
#endif