From 28f9a9ad19afeed3b96c1e4887fc1c0241d0ae81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Walenciak?= Date: Sun, 3 Dec 2023 10:45:13 +0100 Subject: [PATCH] Export BaseConnection (#34) --- include/cpp_restapi/base_connection.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/cpp_restapi/base_connection.hpp b/include/cpp_restapi/base_connection.hpp index 155a33f..916028a 100644 --- a/include/cpp_restapi/base_connection.hpp +++ b/include/cpp_restapi/base_connection.hpp @@ -5,6 +5,7 @@ #include #include +#include "cpp_restapi_export.h" namespace cpp_restapi @@ -12,7 +13,7 @@ namespace cpp_restapi /** * @brief base class with common parts for backend specific implementations */ - class BaseConnection: public cpp_restapi::IConnection + class CPP_RESTAPI_EXPORT BaseConnection: public cpp_restapi::IConnection { public: [[deprecated]] explicit BaseConnection(const std::string& address, const std::string& token);