28 lines
1.2 KiB
MQL5
28 lines
1.2 KiB
MQL5
//+------------------------------------------------------------------+
|
|
//| JsonPointer.mqh |
|
|
//| Copyright 2026, Niquel Mendoza |
|
|
//| https://www.mql5.com |
|
|
//+------------------------------------------------------------------+
|
|
#property copyright "Copyright 2026, Niquel Mendoza"
|
|
#property link "https://www.mql5.com"
|
|
#property strict
|
|
|
|
#ifndef JSONPARSERBYLEO_SRC_JSONPOINTER_MQH
|
|
#define JSONPARSERBYLEO_SRC_JSONPOINTER_MQH
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
#include <TSN\\BSFL\\Query.mqh>
|
|
#include "JsonParser.mqh"
|
|
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
namespace TSN
|
|
{
|
|
#define CJsonPointerResolver TSN::CDomNodePointer<TSN::CJsonParser>
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
#endif // JSONPARSERBYLEO_SRC_JSONPOINTER_MQH
|