-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuilder.cpp
83 lines (71 loc) · 1.92 KB
/
Builder.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
/**
* \file Builder.cpp
* \brief Builder - responsible for constructing an object
*
* Builder is a class (or set of classes) responsible for constructing an object.
* Each builder constructs a different part of the object.
*/
#include <StdStream/StdStream.h>
#include <StdTest/StdTest.h>
#include <Stl.h>
//-------------------------------------------------------------------------------------------------
class Message
{
public:
std::string hello {};
std::string world {};
void send() const
{
std::cout << hello << " " << world << std::endl;
}
};
//-------------------------------------------------------------------------------------------------
class IBuilderMessage
{
public:
virtual ~IBuilderMessage() = default;
virtual void update(Message *out_msg) const = 0;
};
//-------------------------------------------------------------------------------------------------
//-------------------------------------------------------------------------------------------------
class BuilderHello :
public IBuilderMessage
{
public:
void update(Message *out_msg) const override
{
out_msg->hello = "Hello";
}
};
//-------------------------------------------------------------------------------------------------
class BuilderWorld :
public IBuilderMessage
{
public:
void update(Message *out_msg) const override
{
out_msg->world = "world!";
}
};
//-------------------------------------------------------------------------------------------------
void
helloWorld(
const IBuilderMessage &a_builder1,
const IBuilderMessage &a_builder2
)
{
Message msg;
a_builder1.update(&msg);
a_builder2.update(&msg);
msg.send();
}
//-------------------------------------------------------------------------------------------------
int main()
{
::helloWorld(BuilderHello(), BuilderWorld());
return EXIT_SUCCESS;
}
//-------------------------------------------------------------------------------------------------
#if OUTPUT
Hello world!
#endif