mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-11 01:22:12 +02:00
12 lines
194 B
C++
12 lines
194 B
C++
#include <LibGUI/GHttpResponse.h>
|
|
|
|
GHttpResponse::GHttpResponse(int code, ByteBuffer&& payload)
|
|
: GNetworkResponse(move(payload))
|
|
, m_code(code)
|
|
{
|
|
}
|
|
|
|
GHttpResponse::~GHttpResponse()
|
|
{
|
|
}
|