mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-31 05:39:55 +00: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()
|
|
{
|
|
}
|