fast/Platform/HttpClient.h
2025-01-20 10:30:01 +08:00

33 lines
498 B
C++

#pragma once
#include <afxinet.h>
#include <vector>
using namespace std;
class CHttpClient
{
public:
CHttpClient();
~CHttpClient(void);
//»Øµ÷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;
};