14 lines
618 B
MQL5
14 lines
618 B
MQL5
//+------------------------------------------------------------------+
|
|
//| GateManager.mqh - Stub for backward compatibility |
|
|
//| This file provides backward compatibility with old includes |
|
|
//| New code should use EnhancedEfficientGateSystem.mqh |
|
|
//+------------------------------------------------------------------+
|
|
#ifndef GATEMANAGER_MQH
|
|
#define GATEMANAGER_MQH
|
|
|
|
#include "EnhancedEfficientGateSystem.mqh"
|
|
|
|
// Backward compatibility: CGateManager is an alias for CEfficientGateManagerEnhanced
|
|
#define CGateManager CEfficientGateManagerEnhanced
|
|
|
|
#endif // GATEMANAGER_MQH
|