| 1234567891011121314151617181920212223 |
- #ifndef HTTP_HTTPHEADER_H
- #define HTTP_HTTPHEADER_H
- #include <string>
- namespace Http {
- struct HttpHeader
- {
- public:
- bool operator==(const std::string& other) const
- {
- return name == other;
- }
- std::string name;
- std::string value;
- };
- } // namespace Http
- #endif // HTTP_HTTPHEADER_H
|