20 lines
934 B
MQL5
20 lines
934 B
MQL5
|
|
//+------------------------------------------------------------------+
|
||
|
|
//| Def.mqh |
|
||
|
|
//| Copyright 2026, MetaQuotes Ltd. |
|
||
|
|
//| https://www.mql5.com |
|
||
|
|
//+------------------------------------------------------------------+
|
||
|
|
#property copyright "Copyright 2026, MetaQuotes Ltd."
|
||
|
|
#property link "https://www.mql5.com"
|
||
|
|
#property strict
|
||
|
|
|
||
|
|
#ifndef JSONPARSERBYLEO_WF_INC_DEF_MQH
|
||
|
|
#define JSONPARSERBYLEO_WF_INC_DEF_MQH
|
||
|
|
|
||
|
|
//+------------------------------------------------------------------+
|
||
|
|
//| |
|
||
|
|
//+------------------------------------------------------------------+
|
||
|
|
#include <TSN\\MqlCI\\UnitTest.mqh>
|
||
|
|
#include "..\\..\\Src\\JsonNode.mqh"
|
||
|
|
#resource "fixture_test.json" as const string g_test_json
|
||
|
|
|
||
|
|
#endif // JSONPARSERBYLEO_WF_INC_DEF_MQH
|