mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-05-31 17:53:59 +00:00
11 lines
243 B
C++
11 lines
243 B
C++
/**
|
|
* @file web_client/curl_web_client.cpp
|
|
* @brief CURLWebClient constructor and destructor implementation.
|
|
*/
|
|
|
|
#include "web_client/curl_web_client.h"
|
|
|
|
CURLWebClient::CURLWebClient() = default;
|
|
|
|
CURLWebClient::~CURLWebClient() = default;
|