mirror of
https://github.com/RGBCube/serenity
synced 2025-06-02 17:08:12 +00:00
12 lines
260 B
C++
12 lines
260 B
C++
#include <LibGUI/GHttpResponse.h>
|
|
|
|
GHttpResponse::GHttpResponse(int code, HashMap<String, String>&& headers, ByteBuffer&& payload)
|
|
: GNetworkResponse(move(payload))
|
|
, m_code(code)
|
|
, m_headers(move(headers))
|
|
{
|
|
}
|
|
|
|
GHttpResponse::~GHttpResponse()
|
|
{
|
|
}
|