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

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

#1 개발버전 게시

File size: 577 bytes
Line 
1/**
2 * CRXHttpMessage.h
3 */
4#ifndef __CRXHTTPMESSAGE_H__
5#define __CRXHTTPMESSAGE_H__
6
7#include <string>
8
9using namespace std;
10
11class CRXHttpMessage
12{
13protected:
14 std::string mHttpMessage;
15 std::string mHttpVersion;
16
17public:
18 CRXHttpMessage (void);
19
20protected:
21 virtual void Parse (void);
22
23public:
24 void SetMessage (const char * aHttpMessage);
25 std::string GetMessage (void) const;
26
27 operator const char * (void) const;
28 virtual CRXHttpMessage & operator = (const char * aHttpMessage);
29};
30
31#endif // #ifndef __CRXHTTPMESSAGE_H__
Note: See TracBrowser for help on using the repository browser.