Programming patterns – Facade – library MetaTrader 5
/**************************************************************** Programming patterns – Facade Provide a unified interface to a set of interfaces in a subsystem. Facade defines a higher- level interface that makes the subsystem easier to use. /**/ /****************************************************************/ class SubSystemA {public:void OperationA() {Print(“SubSystem A”);}}; /**/ class SubSystemB {public:void OperationB() {Print(“SubSystem B”);}}; /**/ class SubSystemC {public:void OperationC() {Print(“SubSystem C”);}}; /****************************************************************/ class Facade … Read more