LLmAgentsBasicTools/Src/EnumReg/Main.mqh

35 lines
1.5 KiB
MQL5
Raw Permalink Normal View History

2026-07-13 15:02:42 -05:00
//+------------------------------------------------------------------+
//| Main.mqh |
//| Copyright 2026, Niquel Mendoza. |
//| https://www.mql5.com/ |
//+------------------------------------------------------------------+
#property copyright "Copyright 2026, Niquel Mendoza."
#property link "https://www.mql5.com/"
#property strict
#ifndef LLMAGENTSBYLEOBASICTOOLS_ENUMREG_MAIN_MQH
#define LLMAGENTSBYLEOBASICTOOLS_ENUMREG_MAIN_MQH
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
#include "Table.mqh"
#include <TSN\\MQLArticles\\Utils\\EnumTemplate.mqh>
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
namespace TSN
{
TSN_MQLARTICLES_ENUM_REG_TEM(LlmBTools, g_llmagentsbyleobtools_ext_seeds, g_llmagentsbyleobtools_ext_values,
g_llmagentsbyleobtools_ext_hashes, LAGBL_ENUMREG_BUCKET_SIZE_EXT, LAGBL_ENUMREG_TABLE_SIZE_EXT)
// Mod val..
static bool CEnumRegLlmBTools::RunDinyamics(void)
{
return true;
}
}
#endif // LLMAGENTSBYLEOBASICTOOLS_ENUMREG_MAIN_MQH
//+------------------------------------------------------------------+