We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99291a3 commit 098c3eaCopy full SHA for 098c3ea
3 files changed
docs/uml/patterns_structural_bridge.drawio.svg
src/patterns/structural/Adapter.cpp
@@ -1,6 +1,8 @@
1
+// Adapters make legacy code work with modern classes.
2
+// UML: docs/uml/patterns_structural_adapter.drawio.svg
3
+
4
#include <iostream>
5
-// Adapters make legacy code work with modern classes.
6
namespace AdapterPattern
7
{
8
/**
src/patterns/structural/Bridge.cpp
@@ -1,3 +1,8 @@
+// Bridge lets we split a large class or a set of closely related classes
+// into two separate hierarchies—abstraction and implementation
+// which can be developed independently of each other.
+// UML: docs/uml/patterns_structural_bridge.drawio.svg
namespace Problem
0 commit comments