1 #ifndef HTTPHEADER_HXX
2 #define HTTPHEADER_HXX
3 
4 #include <map>
5 #include <string>
6 
7 class HTTPHeader
8 {
9 	private:
10 
11 	std::map<std::string, std::string> 	HeaderFields;
12 
13 	public:
14 
15 	std::string 				AccessType;
16 	std::string 				AccessPath;
17 	std::string 				AccessProtocol;
18 
19 	void ImportHeader 	( std::string );
20 	std::string ExportHeader( void );
21 	std::string GetValue 	( std::string );
22 	void SetValue		( std::string, std::string );
23 };
24 
25 #endif
26