//+------------------------------------------------------------------+ //| TFExpert.mqh | //| Thorsten Fischer Copyright 2019-2020 | //| https://mql5.tfsystem.de | //+------------------------------------------------------------------+ #property copyright "Thorsten Fischer Copyright 2019-2020" #property link "https://mql5.tfsystem.de" #property version "1.00" #include class CTFExpert : public CExpert { private: public: CTFExpert(); ~CTFExpert(); }; //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ CTFExpert::CTFExpert() { } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ CTFExpert::~CTFExpert() { } //+------------------------------------------------------------------+