forked from tfuser/TF-altProjekte
37 lines
1.6 KiB
MQL5
37 lines
1.6 KiB
MQL5
|
//+------------------------------------------------------------------+
|
||
|
//| AppChartTest.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\TFApp.mqh"
|
||
|
#include "CTGUI.mqh"
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| |
|
||
|
//+------------------------------------------------------------------+
|
||
|
class CAppChartTest : public CTFApp
|
||
|
{
|
||
|
private:
|
||
|
|
||
|
CCTGUI hauptframe; // Hauptfenster im Chart
|
||
|
|
||
|
public:
|
||
|
CAppChartTest();
|
||
|
~CAppChartTest();
|
||
|
};
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| |
|
||
|
//+------------------------------------------------------------------+
|
||
|
CAppChartTest::CAppChartTest()
|
||
|
{
|
||
|
}
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| |
|
||
|
//+------------------------------------------------------------------+
|
||
|
CAppChartTest::~CAppChartTest()
|
||
|
{
|
||
|
}
|
||
|
//+------------------------------------------------------------------+
|