22 lines
1.1 KiB
MQL5
22 lines
1.1 KiB
MQL5
|
//+------------------------------------------------------------------+
|
||
|
//| IHttpObserver.mqh |
|
||
|
//| Copyright 2024, MetaQuotes Ltd. |
|
||
|
//| https://www.mql5.com |
|
||
|
//+------------------------------------------------------------------+
|
||
|
#property copyright "Copyright 2024, MetaQuotes Ltd."
|
||
|
#property link "https://www.mql5.com"
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| |
|
||
|
//+------------------------------------------------------------------+
|
||
|
#include "../HttpRequest.mqh"
|
||
|
#include "../HttpResponse.mqh"
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| |
|
||
|
//+------------------------------------------------------------------+
|
||
|
interface IHttpObserver
|
||
|
{
|
||
|
void OnSend(CHttpRequest *request);
|
||
|
void OnRecv(CHttpResponse *response);
|
||
|
};
|
||
|
//+------------------------------------------------------------------+
|