tv_rename/network.hpp
2019-01-19 13:40:10 +01:00

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