##// END OF EJS Templates
Removed forgotten files form previous impl of VC, fixed wrong submodules...
Removed forgotten files form previous impl of VC, fixed wrong submodules init (was always erasing changes :( ) Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r0:86b06c4cec3c
r31:dec007be0b03
Show More
Response.h
25 lines | 453 B | text/x-c | CLexer
#ifndef RESPONSE_H
#define RESPONSE_H
#include <QByteArray>
#include <QString>
/**
* @brief The Response class holds a Network request response
*
*/
class Response
{
int _status_code;
QByteArray _data;
public:
Response(){}
Response(QByteArray data, int status_code)
:_status_code(status_code),_data(data)
{
}
int status_code(){return _status_code;}
QByteArray& data(){return _data;}
};
#endif // RESPONSE_H