source: cheroxy/branches/b0_1_threading/include/CRXHttpResponse.h@ 7

Last change on this file since 7 was 7, 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.