Files
MT5-EA-Sniper-Strategy/Include/Canvas/DX/DXObject.mqh
T
2021-11-14 05:50:50 +01:00

21 lines
1.7 KiB
Plaintext

//+------------------------------------------------------------------+
//| DXObject.mqh |
//| Copyright 2019, MetaQuotes Software Corp. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#include "DXObjectBase.mqh"
#include "DXMath.mqh"
//--- forward declaration
class CCanvas3D;
//+------------------------------------------------------------------+
//| Class CDXObject |
//+------------------------------------------------------------------+
class CDXObject : public CDXObjectBase
{
public:
//--- render function
virtual bool Render(void)=0;
};
//+------------------------------------------------------------------+