Forum

Inheritance in MQL

Hello, I am learner and beginner in MQL. I am trying to achieve inheritance possiblity: Below is situation where i am finding diffculties. template <typename T> class A { protected: virtual T Func() { Print("from Class A"); return NULL; } public: A(){Execute();} void Execute() {