23 lines
No EOL
932 B
MQL5
23 lines
No EOL
932 B
MQL5
//+------------------------------------------------------------------+
|
|
//| Json.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_JSON_MQH
|
|
#define JSONPARSERBYLEO_SRC_JSON_MQH
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
#include "JsonBuilder.mqh"
|
|
#include "JsonStrBuilder.mqh"
|
|
#include "JsonPointer.mqh"
|
|
#include "JsonSaxImp.mqh"
|
|
#include "JsonNode.mqh"
|
|
|
|
|
|
#endif // JSONPARSERBYLEO_SRC_JSON_MQH |