Skip to content
Snippets Groups Projects
getrequest.h 463 B
Newer Older
Armin Felder's avatar
Armin Felder committed
#ifndef GETREQUEST_H
#define GETREQUEST_H
#include "restrequest.h"

class GetRequest : public RestRequest
{
public:
    GetRequest(QString pPath,RestRequestCallback pSuccess,RestRequestCallback pError);
    GetRequest(QString pPath,RestRequestCallback pSuccess,RestRequestCallback pError, bool pAbsolutePath);
    GetRequest(QString pPath,RestRequestCallback pSuccess,RestRequestCallback pError, bool pAbsolutePath, bool pRawRequest);

};

#endif // GETREQUEST_H