mirror of
https://gitlab.com/spaceti-app/integrations/acs/colnod-connector.git
synced 2026-07-12 10:50:38 +02:00
12 lines
225 B
C++
12 lines
225 B
C++
#include "response.h"
|
|
|
|
Response::Response()
|
|
{
|
|
connect(this, &Response::ready, this, &Response::setJson);
|
|
}
|
|
|
|
int Response::getStatusCode()
|
|
{
|
|
return reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
}
|