-
Notifications
You must be signed in to change notification settings - Fork 0
/
cleat.cpp
72 lines (63 loc) · 1.56 KB
/
cleat.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
#include <iostream>
#include "cleat.h"
#include <string>
Cleat::Cleat(string name, double price, double cost, Color color, Design design, LaceType laceType) :
Product{name, price, cost}, _color{color}, _design{design}, _laceType{laceType} { }
Color Cleat::getColor() const{
return _color;
}
Design Cleat::getDesign() const{
return _design;
}
LaceType Cleat::getlaceType() const{
return _laceType;
}
string Cleat::to_string() {
string cleat_color;
string cleat_design;
string cleat_lace;
switch(_color){
case 0:
cleat_color = "Red";
break;
case 1:
cleat_color = "Blue";
break;
case 2:
cleat_color = "Black";
break;
case 3:
cleat_color = "White";
break;
case 4:
cleat_color = "Green";
break;
case 5:
cleat_color = "Yellow";
break;
}
switch(_design){
case 0:
cleat_design = "Normal";
break;
case 1:
cleat_design = "Special";
break;
case 2:
cleat_design = "Custom";
break;
}
switch(_laceType){
case 0:
cleat_lace = "cloth";
break;
case 1:
cleat_lace = "plastic";
break;
case 2:
cleat_lace = "nylon";
break;
}
cout << Product::name() << '|' << _price << '|' << _cost << '|' << _color << '|' << _design << '|' << _laceType << endl;
return cleat_color;
}