// For license of this file, see /LICENSE.md. #ifndef HTTPRESPONSE_H #define HTTPRESPONSE_H #include #include typedef QPair HttpHeader; class RSSGUARD_DLLSPEC HttpResponse { public: explicit HttpResponse(); QString body() const; void setBody(const QString& body); QList headers() const; void appendHeader(const QString& name, const QString& value); private: QList m_headers; QString m_body; }; #endif // HTTPRESPONSE_H