-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBridge.cpp
99 lines (86 loc) · 1.74 KB
/
Bridge.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
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
#include<iostream>
#include<memory>
// Implementor
class Drawing
{
public:
virtual void drawLine(int x, int y) = 0;
virtual void fill() = 0;
};
// ConcreteImplementor
class RectDrawing : public Drawing
{
void drawLine(int x, int y)
{
std::cout << "Rect Draw line from " << x << " to " << y << std::endl;
}
void fill()
{
std::cout << "Rect fill" << std::endl;
}
};
// ConcreteImplementor
class CircleDrawing : public Drawing
{
void drawLine(int x, int y)
{
std::cout << "Circle Draw line from " << x << " to " << y << std::endl;
}
void fill()
{
std::cout << "Circle fill" << std::endl;
}
};
// Abstraction
class Shape {
public:
virtual void draw() = 0;
virtual ~Shape() = default;
Shape(Drawing* drawing)
{
this->drawing = drawing;
}
void drawLine(int x, int y)
{
drawing->drawLine(x, y);
}
void fill()
{
drawing->fill();
}
private:
Drawing* drawing;
};
// RefindAbstraction
class Rectangle : public Shape
{
public:
Rectangle(Drawing* drawing) : Shape(drawing) { }
void draw()
{
std::cout << "Rect draw extend" << std::endl;
}
};
// RefindAbstraction
class Circle : public Shape
{
public:
Circle(Drawing* drawing) : Shape(drawing) { }
void draw()
{
std::cout << "Circle draw extend" << std::endl;
}
};
int main()
{
auto rectangle = std::unique_ptr<Shape>(new Rectangle(new RectDrawing));
auto circle = std::unique_ptr<Shape>(new Circle(new CircleDrawing));
rectangle->drawLine(1, 2);
rectangle->fill();
rectangle->draw();
std::cout << std::endl << std::endl;
circle->drawLine(3, 4);
circle->fill();
circle->draw();
return 0;
}