17 lines
223 B
C++
17 lines
223 B
C++
#ifndef NETWORK_HPP
|
|
#define NETWORK_HPP
|
|
|
|
#include <curl/curl.h>
|
|
#include <string>
|
|
|
|
class Curl {
|
|
public:
|
|
Curl();
|
|
~Curl();
|
|
std::string execute( const std::string &url );
|
|
private:
|
|
CURL *curl_handle;
|
|
};
|
|
|
|
#endif
|