Skip to content
Snippets Groups Projects
postrequest.h 297 B
Newer Older
Armin Felder's avatar
Armin Felder committed
#ifndef POSTREQUEST_H
#define POSTREQUEST_H
#include "restRequests/restrequest.h"

class PostRequest : public RestRequest
{
public:
    PostRequest(QString pPath, QByteArray pData,RestRequestCallback pSuccess, RestRequestCallback pError);
protected:
    PostRequest();
};

#endif // POSTREQUEST_H