forked from nique_372/SimPHash
32 lines
1.3 KiB
MQL5
32 lines
1.3 KiB
MQL5
//+------------------------------------------------------------------+
| |||
//| 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 SIMPHASH_SRC_ENUM_REG_MAIN_MQH
| |||
#define SIMPHASH_SRC_ENUM_REG_MAIN_MQH
| |||
| |||
//+------------------------------------------------------------------+
| |||
//| |
| |||
//+------------------------------------------------------------------+
| |||
#include "Table.mqh"
| |||
#include <TSN\\MQLArticles\\Utils\\EnumTemplate.mqh>
| |||
| |||
//+------------------------------------------------------------------+
| |||
//| |
| |||
//+------------------------------------------------------------------+
| |||
namespace TSN
| |||
{
| |||
TSN_MQLARTICLES_ENUM_REG_TEM(SimpH, g_simphash_enum_reg_seeds, g_simphash_enum_reg_values, g_simphash_enum_reg_hashes, SIMPHASH_ENUMREG_BUCKET_SIZE, SIMPHASH_ENUMREG_TABLE_SIZE)
| |||
| |||
// Mod val..
| |||
static bool CEnumRegSimpH::RunDinyamics(void)
| |||
{
| |||
return true;
| |||
}
| |||
}
| |||
#endif // SIMPHASH_SRC_ENUM_REG_MAIN_MQH
|