//+------------------------------------------------------------------+ //| CTGUI.mqh | //| Thorsten Fischer Copyright 2019 | //| https://www.tfsystem.de | //+------------------------------------------------------------------+ #property copyright "Thorsten Fischer Copyright 2019" #property link "https://www.tfsystem.de" #property version "1.00" #include "..\..\Include\TF-Class\TFWndFrame.mqh" //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ class CCTGUI //: public CTFApp { private: CTFWndFrame mainframe; // Hauptfenster protected: public: CCTGUI(); ~CCTGUI(); //virtual bool Load(const int file_handle); // Load Data //virtual bool Save(const int file_handle); // Save Data }; //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ CCTGUI::CCTGUI() { } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ CCTGUI::~CCTGUI() { } //+------------------------------------------------------------------+ //| Load Data | //+------------------------------------------------------------------+ //bool CCTGUI::Load(const int file_handle) // { ////--- // DPrint(__FUNCTION__+" durchlaufen"); ////--- // return(true); // } //+------------------------------------------------------------------+ //| Save Data | //+------------------------------------------------------------------+ //bool CCTGUI::Save(const int file_handle) // { ////--- // DPrint(__FUNCTION__+" durchlaufen"); ////--- // return(true); // } //+------------------------------------------------------------------+