BasesParserSLan/Src/Query/Parser.mqh

53 lines
1.7 KiB
MQL5
Raw Permalink Normal View History

2026-07-20 22:44:15 -05:00
//+------------------------------------------------------------------+
//| Parser.mqh |
//| Copyright 2026, MetaQuotes Ltd. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2026, MetaQuotes Ltd."
#property link "https://www.mql5.com"
#property strict
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
#include "Def.mqh"
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
2026-07-21 08:53:15 -05:00
namespace TSN
{
2026-07-20 22:44:15 -05:00
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
class CSLDomQueryCompiler
{
public:
uchar m_raw[];
int m_pos;
int m_len;
//---
public:
CSLDomQueryCompiler(void) {}
~CSLDomQueryCompiler(void) {}
//---
2026-07-21 08:53:15 -05:00
bool Compile();
2026-07-20 22:44:15 -05:00
};
2026-07-21 08:53:15 -05:00
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
bool CSLDomQueryCompiler::Compile(void)
{
}
2026-07-20 22:44:15 -05:00
}
//+------------------------------------------------------------------+