TF-altProjekte/Experts/Ablage/TF-CT/CTGUI.mqh
super.admin 84cd1a7ab0 convert
2025-05-30 16:31:33 +02:00

62 lines
2.4 KiB
MQL5

//+------------------------------------------------------------------+
//| 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);
// }
//+------------------------------------------------------------------+