fast/Platform/HttpClient.h

33 lines
498 B
C
Raw Normal View History

2025-01-20 10:30:01 +08:00
#pragma once
#include <afxinet.h>
#include <vector>
using namespace std;
class CHttpClient
{
public:
CHttpClient();
~CHttpClient(void);
//<2F>ص<EFBFBD>WMS
CString WmsCallBack(CString strSender, CString strMsgType, CString strParam);
CString FastCallBack(CString strUrl, CString strParam);
CString AbnormalCallBack(CString strType, CString strParam);
CString GenericPost(CString strParam);
public:
CString m_strIp;
CString m_strUrl;
int m_nPort;
CInternetSession session;
};