Added usage reason for Bridge pattern.

Fixes #4.
This commit is contained in:
Ian Dinwoodie
2022-04-07 15:03:07 -04:00
parent 006f3f3e4e
commit d2b6b872d7

View File

@@ -1039,7 +1039,9 @@ std::cout << careers.getContent() << std::endl;
#### When To Use
TODO
When you need to implement several variants of some functionality for a class,
you find yourself extending a class in competing ways, or you need to allow
switching between implementations at runtime.
### 🌿 Composite