-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdecorator_pattern.cpp
More file actions
140 lines (111 loc) · 2.29 KB
/
decorator_pattern.cpp
File metadata and controls
140 lines (111 loc) · 2.29 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/**
* Pattern: Decorator
*
* Short Story:
* Starbuzz is in trouble for calculating cost of a
* coffee properly. They do not know how to add cost of
* condiments to the cost in an elegant way. They are really
* tired of creating so many combinations of coffee objects.
* */
#include <iostream>
#include <string>
class Beverage
{
public:
Beverage() = default;
virtual ~Beverage() = default;
virtual std::string getDescription()
{
return _description;
}
virtual double cost() = 0;
protected:
std::string _description = "Unknown Beverage";
};
class CondimentDecorator : public Beverage
{
public:
CondimentDecorator() = default;
virtual ~CondimentDecorator() = default;
protected:
Beverage *_beverage;
};
class Espresso : public Beverage
{
public:
Espresso()
{
_description = "Espresso";
}
double cost()
{
return 1.99;
}
};
class Latte : public Beverage
{
public:
Latte()
{
_description = "Latte";
}
double cost()
{
return 2.20;
}
};
class Mocha : public CondimentDecorator
{
public :
Mocha(Beverage *beverage)
{
_beverage = beverage;
}
~Mocha()
{
if(_beverage)
delete _beverage;
}
std::string getDescription()
{
return _beverage->getDescription() + ", Mocha";
}
double cost()
{
return .20 + _beverage->cost();
}
};
class Milk : public CondimentDecorator
{
public :
Milk(Beverage *beverage)
{
_beverage = beverage;
}
~Milk()
{
if(_beverage)
delete _beverage;
}
std::string getDescription()
{
return _beverage->getDescription() + ", Milk";
}
double cost()
{
return .10 + _beverage->cost();
}
};
int main()
{
Beverage *espresso = new Espresso();
std::cout << espresso->getDescription() << " $" << espresso->cost() << std::endl;
Beverage *latteMocha = new Mocha(new Latte());
std::cout << latteMocha->getDescription() << " $" << latteMocha->cost() << std::endl;
Beverage *mix = new Milk(new Mocha(new Espresso()));
std::cout << mix->getDescription() << " $" << mix->cost() << std::endl;
delete mix;
delete latteMocha;
delete espresso;
return 0;
}