mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-14 08:50:53 +08:00
18 lines
198 B
C++
18 lines
198 B
C++
#pragma once
|
|
|
|
class CHttpGetDlg;
|
|
|
|
class CHttpClient
|
|
{
|
|
public:
|
|
CHttpClient(CHttpGetDlg& hWin, const CString& url);
|
|
~CHttpClient();
|
|
|
|
void run();
|
|
|
|
private:
|
|
CHttpGetDlg& m_hWin;
|
|
CString m_url;
|
|
};
|
|
|