33 lines
1.2 KiB
MQL5
33 lines
1.2 KiB
MQL5
|
//+------------------------------------------------------------------+
|
||
|
//| ControlDialog.mqh |
|
||
|
//| Thorsten Fischer Copyright 2020 |
|
||
|
//| https://mql5.tfsystem.de |
|
||
|
//+------------------------------------------------------------------+
|
||
|
#property copyright "Thorsten Fischer Copyright 2020"
|
||
|
#property link "https://mql5.tfsystem.de"
|
||
|
#property version "1.00"
|
||
|
|
||
|
#include <Controls\Dialog.mqh>
|
||
|
|
||
|
class CControlDialog : public CAppDialog
|
||
|
{
|
||
|
private:
|
||
|
|
||
|
public:
|
||
|
CControlDialog();
|
||
|
~CControlDialog();
|
||
|
};
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| |
|
||
|
//+------------------------------------------------------------------+
|
||
|
CControlDialog::CControlDialog()
|
||
|
{
|
||
|
}
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| |
|
||
|
//+------------------------------------------------------------------+
|
||
|
CControlDialog::~CControlDialog()
|
||
|
{
|
||
|
}
|
||
|
//+------------------------------------------------------------------+
|