blob: fe93a2dce5f061157161c3ef67494f7b5935345c (
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
26
27
|
#ifndef __8C9706FF_6B05_4d0d_85B8_5724E5DC0BA4_HTTPSession_h__
#define __8C9706FF_6B05_4d0d_85B8_5724E5DC0BA4_HTTPSession_h__
#include <string>
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__
|