UTE/Strategy/Panel/Events/EventRefresh.mqh
super.admin bd7e405a90 convert
2025-05-30 16:34:43 +02:00

18 lines
723 B
MQL5

//+------------------------------------------------------------------+
//| MBookPanel.mqh |
//| Copyright 2015, MetaQuotes Software Corp. |
//| http://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2015, MetaQuotes Software Corp."
#property link "http://www.mql5.com"
#include <Object.mqh>
#include "Event.mqh"
///
///
///
class CEventRefresh : public CEvent
{
public:
CEventRefresh() : CEvent(EVENT_FREFRESH){;}
};
//+------------------------------------------------------------------+