restClient.h
Go to the documentation of this file.
1 
6 #pragma once
7 
8 #include <rapidjson/document.h>
9 #include <curl/curl.h>
10 #include <boost/system/error_code.hpp>
11 
19 {
20 public:
21  rapidjson::Document getResult(boost::system::error_code& rEc, char* url);
22  long putData(boost::system::error_code& rEc, char* url, const char* data);
23 };
Class to make requests to a Rest Server using curl.
Definition: restClient.h:18