C++ libcurl framework
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.
cppurl/lib/cppurl.hpp

31 lines
367 B

11 months ago
#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