2026-06-26 12:44:41 -05:00
|
|
|
//+------------------------------------------------------------------+
|
|
|
|
|
//| All.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_HASH_ALL_MQH
|
|
|
|
|
#define SIMPHASH_SRC_HASH_ALL_MQH
|
|
|
|
|
|
|
|
|
|
//+------------------------------------------------------------------+
|
|
|
|
|
//| |
|
|
|
|
|
//+------------------------------------------------------------------+
|
2026-06-27 21:28:54 -05:00
|
|
|
#include "Str\\XXHash.mqh"
|
|
|
|
|
#include "Str\\FNV1a64.mqh"
|
|
|
|
|
#include "UL1\\MurMur.mqh"
|
|
|
|
|
#include "UL1\\SplitMix.mqh"
|
|
|
|
|
|
2026-06-26 12:44:41 -05:00
|
|
|
|
|
|
|
|
#endif // SIMPHASH_SRC_HASH_ALL_MQH
|