ExpressEvalByLeo/Src/BoleanEval/Arr.mqh

30 lines
1.3 KiB
MQL5
Raw Permalink Normal View History

2026-05-10 22:20:05 -05:00
//+------------------------------------------------------------------+
//| Arr.mqh |
//| Copyright 2026, Niquel Mendoza. |
//| https://www.mql5.com/es/users/nique_372 |
//+------------------------------------------------------------------+
#property copyright "Copyright 2026, Niquel Mendoza."
#property link "https://www.mql5.com/es/users/nique_372"
#property strict
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
#include "Ops.mqh"
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
class COpsArr : public IComparationValue
{
private:
IComparationValue* m_valores[];
public:
COpsArr(void) {}
~COpsArr(void) {}
bool Resolver() const override final { return true; }
string ToStr() const override final { return ""; }
};
//+------------------------------------------------------------------+