/* * IXHttpClient.h * Author: Benjamin Sergeant * Copyright (c) 2019 Machine Zone, Inc. All rights reserved. */ #pragma once #include #include #include #include #include #include #include "IXSocket.h" #include "IXWebSocketHttpHeaders.h" namespace ix { using HttpResponse = std::tuple; class HttpClient { public: HttpClient(); ~HttpClient(); // Static methods ? HttpResponse get(const std::string& url, bool verbose); private: std::shared_ptr _socket; }; }