#ifndef NETWORK_HPP #define NETWORK_HPP #include #ifdef _WIN32 #include #include using string = std::wstring; #else #include using string = std::string; #endif class Curl { public: Curl(); ~Curl(); std::string execute( const string &url ); private: #ifdef _WIN32 HINTERNET connect = nullptr; #else CURL *curl_handle; #endif }; #endif