source: cheroxy/trunk/include/CRXHttpResponse.h@ 5

Last change on this file since 5 was 5, checked in by cheese, 12 years ago

#1 개발버전 게시

File size: 579 bytes
Line 
1/**
2 * CRXHttpResponse.h
3 */
4#ifndef __CRXHTTPRESPONSE_H__
5#define __CRXHTTPRESPONSE_H__
6
7#include "CRXHttpMessage.h"
8
9class CRXHttpResponse : public CRXHttpMessage
10{
11private:
12 int mStatusCode;
13 std::string mStatusString;
14
15public:
16 CRXHttpResponse (void);
17
18private:
19 void Parse (void);
20
21public:
22 void SetResponse (const char * aHttpResponse);
23 std::string GetResponse (void) const;
24
25 CRXHttpResponse & operator = (const char * aHttpResponse);
26
27public:
28 int GetStatusCode (void) const;
29};
30
31#endif // #ifndef __CRXHTTPRESPONSE_H__
Note: See TracBrowser for help on using the repository browser.