From dff790d7b58a4c3bb4993b4ad5375ae13ddf2f73 Mon Sep 17 00:00:00 2001 From: Alex Bilger Date: Tue, 16 Jun 2026 16:46:50 +0200 Subject: [PATCH] export symbols for BindingBase to be used in other libs --- bindings/Sofa/src/SofaPython3/Sofa/Core/Binding_Base.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bindings/Sofa/src/SofaPython3/Sofa/Core/Binding_Base.h b/bindings/Sofa/src/SofaPython3/Sofa/Core/Binding_Base.h index 06a98e59e..ca223189c 100644 --- a/bindings/Sofa/src/SofaPython3/Sofa/Core/Binding_Base.h +++ b/bindings/Sofa/src/SofaPython3/Sofa/Core/Binding_Base.h @@ -20,6 +20,7 @@ #pragma once +#include #include #include #include @@ -36,7 +37,7 @@ PYBIND11_DECLARE_HOLDER_TYPE(T, sofapython3::py_shared_ptr, true) namespace sofapython3 { -class BindingBase +class SOFAPYTHON3_API BindingBase { public: static void SetAttr(sofa::core::objectmodel::Base& self, const std::string& s, pybind11::object value);