-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCashier.h
58 lines (44 loc) · 1010 Bytes
/
Cashier.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
#include <string>
/**
* \class Cashier
* \ver 0.1
* \author Pavel Zhechko a.k.a sad_tigger
*/
// status = the Cashier at the bookstore
class Cashier : private Person {
public:
Cashier();
Cashier(string, string, int);
~Cashier();
void check_cash() const {cout << this->name << " have a " << this->cash << " dollars." << endl;}
void take_cash(int m) {this->cash += m; }
void give_cash(Person &person, int money)
{this->cash -= money; person.take_cash(money);}
//void by_smth();
void set_price(Book&, int);
void sell_book(Book&,Person&);
private:
string name;
string status;
int cash;
//int age;
};
Cashier::Cashier()
{
}
Cashier::Cashier(string _name, string _status,int _cash)
:name(_name),status(_status), cash(_cash)
{
}
void Cashier::set_price(Book &book, int cost)
{
book.price = cost;
}
void Cashier::sell_book(Book&,Person&)
{
//для начала нужно определить кому он продаёт
//
}
Cashier::~Cashier()
{
}