blob: ba28a1493c0c6ae5b0b1d79060e3915c74f9975d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef __8C9706FF_6B05_4d0d_85B8_5724E5DC0BA4_HTTPSession_h__
#define __8C9706FF_6B05_4d0d_85B8_5724E5DC0BA4_HTTPSession_h__
class CHTTPSession
{
public:
CHTTPSession();
~CHTTPSession();
static bool Init();
bool OpenURL(const tstring& rsURL);
bool ReadResponce(tstring& rsResponce)const;
public:
class CImpl;
private:
typedef boost::scoped_ptr<CImpl> TImpl;
private:
TImpl m_pImpl;
};
#endif //__8C9706FF_6B05_4d0d_85B8_5724E5DC0BA4_HTTPSession_h__
|