#ifndef UTILS_CURLCONNECTION_H #define UTILS_CURLCONNECTION_H /// \cond // C headers #include // C++ headers #include #include // 3rd party headers /// \endcond namespace utils { class CurlConnection { public: CurlConnection(); std::string get(const std::string& url, const std::vector& extraHttpHeaders); private: CURL* curl; CURLcode res; }; } // namespace utils #endif // UTILS_CURLCONNECTION_H