Connexus/Core/Interface/IHttpObserver.mqh

22 lines
1.1 KiB
MQL5
Raw Permalink Normal View History

2025-06-05 11:54:55 -03:00
//+------------------------------------------------------------------+
//| 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);
};
//+------------------------------------------------------------------+