remove unused code

This commit is contained in:
Aaron Po
2026-04-11 14:42:32 -04:00
parent f07d48f810
commit 299a767d39
5 changed files with 0 additions and 97 deletions

View File

@@ -6,8 +6,6 @@
* @brief libcurl-based WebClient implementation.
*/
#include <memory>
#include "web_client/web_client.h"
/**
@@ -36,21 +34,6 @@ class CurlGlobalState {
*/
class CURLWebClient : public WebClient {
public:
/// @brief Constructs a CURL web client.
CURLWebClient();
/// @brief Destroys the CURL web client.
~CURLWebClient() override;
/**
* @brief Downloads URL contents to a file.
*
* @param url Source URL.
* @param file_path Destination file path.
*/
void DownloadToFile(const std::string& url,
const std::string& file_path) override;
/**
* @brief Executes an HTTP GET request.
*

View File

@@ -16,15 +16,6 @@ class WebClient {
/// @brief Virtual destructor for polymorphic cleanup.
virtual ~WebClient() = default;
/**
* @brief Downloads content from a URL into a file.
*
* @param url Source URL.
* @param file_path Destination file path.
*/
virtual void DownloadToFile(const std::string& url,
const std::string& file_path) = 0;
/**
* @brief Executes an HTTP GET request.
*