From aaeb6c65444a28b86c95b636cb54d9e591497dbe Mon Sep 17 00:00:00 2001 From: Clifford Yapp <238416+starseeker@users.noreply.github.com> Date: Sun, 29 Oct 2023 10:11:15 -0400 Subject: [PATCH] Export some more methods --- src/other/manifold/include/manifold/manifold.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/other/manifold/include/manifold/manifold.h b/src/other/manifold/include/manifold/manifold.h index 1cea8343b7c..14f926c152b 100644 --- a/src/other/manifold/include/manifold/manifold.h +++ b/src/other/manifold/include/manifold/manifold.h @@ -117,12 +117,12 @@ class Manifold { * Constructors */ ///@{ - Manifold(); - ~Manifold(); - Manifold(const Manifold& other); - Manifold& operator=(const Manifold& other); - Manifold(Manifold&&) noexcept; - Manifold& operator=(Manifold&&) noexcept; + MANIFOLD_EXPORT Manifold(); + MANIFOLD_EXPORT ~Manifold(); + MANIFOLD_EXPORT Manifold(const Manifold& other); + MANIFOLD_EXPORT Manifold& operator=(const Manifold& other); + MANIFOLD_EXPORT Manifold(Manifold&&) noexcept; + MANIFOLD_EXPORT Manifold& operator=(Manifold&&) noexcept; Manifold(const MeshGL&, const std::vector& propertyTolerance = {}); MANIFOLD_EXPORT Manifold(const Mesh&);