You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
367 B
30 lines
367 B
#ifndef _CPPURL_
|
|
#define _CPPURL_
|
|
|
|
#include <curl/curl.h>
|
|
#include <string>
|
|
|
|
namespace marcelb {
|
|
|
|
using namespace std;
|
|
|
|
static size_t WriteCallback(void *contents, size_t size, size_t nmemb, void *userp);
|
|
|
|
class Curl {
|
|
CURL *curl;
|
|
CURLcode res;
|
|
string readBuffer;
|
|
|
|
|
|
|
|
public:
|
|
// Curl();
|
|
string request(const string& req);
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
#endif
|
|
|