
Bridge Design Pattern in Modern C++
Reading Time: 6 minutes Bridge Design Pattern is a Structural Design Pattern used to decouple a class into two parts – abstraction and it’s implementation – so that both can be developed independently. This promotes the loose coupling between class abstraction & its implementation. […]