Files
ladybird/LibGUI/GHttpResponse.cpp
Andreas Kling 8f30657390 Start working on a Downloader app and backing classes in LibGUI.
LibGUI is slowly becoming LibKitchensink but I'm okay with this for now.
2019-04-07 14:36:10 +02:00

12 lines
194 B
C++

#include <LibGUI/GHttpResponse.h>
GHttpResponse::GHttpResponse(int code, ByteBuffer&& payload)
: GNetworkResponse(move(payload))
, m_code(code)
{
}
GHttpResponse::~GHttpResponse()
{
}