Skip to content

Commit

Permalink
Export BaseConnection (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kicer86 authored Dec 3, 2023
1 parent 93306b8 commit 28f9a9a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/cpp_restapi/base_connection.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@
#include <map>

#include <cpp_restapi/iconnection.hpp>
#include "cpp_restapi_export.h"


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);
Expand Down

0 comments on commit 28f9a9a

Please sign in to comment.