-
Notifications
You must be signed in to change notification settings - Fork 7
/
Error.mqh
25 lines (20 loc) · 876 Bytes
/
Error.mqh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//+------------------------------------------------------------------+
//| Error.mqh |
//| Copyright 2021, Feng Hui Software Corp. |
//| https://www.fenghui.hk |
//+------------------------------------------------------------------+
#property copyright "Copyright 2021, Feng Hui Software Corp."
#property link "https://www.fenghui.hk"
#property version "1.00"
#property strict
class CError
{
private:
protected:
public:
int get(void){return GetLastError();};
string print(void){return "";};
};
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+