-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path12.decorator_pattern.h
70 lines (62 loc) · 1.55 KB
/
12.decorator_pattern.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//
// Created by Tianyi Zhang on 1/3/21.
//
#ifndef DESIGN_PATTERN_12_DECORATOR_PATTERN_H
#define DESIGN_PATTERN_12_DECORATOR_PATTERN_H
#include <string>
#include <memory>
struct Beverage{
virtual std::string getDescription(){
return description;
}
virtual double cost() = 0;
virtual ~Beverage(){}
protected:
std::string description;
};
struct HouseBlend : public Beverage{
HouseBlend(){
description = "HouseBlend";
}
double cost() override{
return 1.5;
}
};
struct DarkRoast : public Beverage{
DarkRoast(){
description = "DarkRoast";
}
double cost() override{
return 2.5;
}
};
struct CondimentDecorator : public Beverage{
virtual std::string getDescription() = 0;
protected:
std::shared_ptr<Beverage> beverage;
};
struct Mocha : public CondimentDecorator{
Mocha(std::shared_ptr<Beverage> beverage){
this->beverage = beverage;
this->description = "Mocha";
}
std::string getDescription() override{
return beverage->getDescription() + "," + this->description;
}
double cost() override{
return 0.5+beverage->cost();
}
};
struct Milk : public CondimentDecorator{
Milk(std::shared_ptr<Beverage> beverage){
this->beverage = beverage;
this->description = "Milk";
}
std::string getDescription() override{
return beverage->getDescription() + "," + this->description;
}
double cost() override{
return 0.6+beverage->cost();
}
};
#endif //DESIGN_PATTERN_12_DECORATOR_PATTERN_H