-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBridge.cpp
65 lines (51 loc) · 1.1 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
//
// Created by snira on 15/02/2021.
//
#include <iostream>
class HouseImp {
public:
virtual void build() {};
};
class HouseType {
public:
HouseImp *imp;
HouseType(HouseImp *i) {
this->imp = i;
}
virtual void BuildHouse() {};
};
class BigHouse : public HouseType {
public:
BigHouse(HouseImp *i) : HouseType(i) {};
void BuildHouse() override {
std::cout << "BigHouse" << std::endl;
this->imp->build();
}
};
class RoundHouse : public HouseType {
public:
RoundHouse(HouseImp *i) : HouseType(i) {};
void BuildHouse() override {
std::cout << "RoundHouse" << std::endl;
this->imp->build();
}
};
class StrawHouse : public HouseImp {
public:
void build() override {
std::cout << "StrawHouse" << std::endl;
}
};
class WoodHouse : public HouseImp {
public:
void build() override {
std::cout << "WoodHouse" << std::endl;
}
};
//int main(){
// HouseType* a = new BigHouse(new StrawHouse);
// a->BuildHouse();
// HouseType* b = new RoundHouse(new WoodHouse);
// b->BuildHouse();
// return 0;
//}