#ifndef MESSMER_CPPUTILS_NETWORK_HTTPCLIENT_H #define MESSMER_CPPUTILS_NETWORK_HTTPCLIENT_H #include #include namespace cpputils { class HttpClient { public: virtual ~HttpClient() {} virtual boost::optional get(const std::string& url, boost::optional timeoutMsec = boost::none) = 0; }; }; #endif