Files
All-MQL5-code/Include/Panel/Events/EventRefresh.mqh
T
Pierre8rTeam d2a192666b Commit
2018-06-23 11:25:42 +02:00

19 lines
1.4 KiB
Plaintext

//+------------------------------------------------------------------+
//| 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){;}
};
//+------------------------------------------------------------------+