/* */ #ifndef _D_HTTP_HEADER_H_ #define _D_HTTP_HEADER_H_ #include "common.h" #include #include #include using namespace std; class HttpHeader { private: multimap table; public: HttpHeader() {} ~HttpHeader() {} void put(const string& name, const string& value); bool defined(const string& name) const; string getFirst(const string& name) const; Strings get(const string& name) const; int getFirstAsInt(const string& name) const; long long int getFirstAsLLInt(const string& name) const; }; #endif // _D_HTTP_HEADER_H_