From b09d86369becdb5cc5c8344270b8f5e89b74ed4a Mon Sep 17 00:00:00 2001 From: aba Date: Mon, 3 Jul 2017 12:36:57 +0300 Subject: [PATCH] 0028884: Modeling - add Standard_EXPORT macro to methods of BRepExtrema_TriangleSet --- src/BRepExtrema/BRepExtrema_TriangleSet.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/BRepExtrema/BRepExtrema_TriangleSet.hxx b/src/BRepExtrema/BRepExtrema_TriangleSet.hxx index ff43a2e711..1e843fbe9d 100644 --- a/src/BRepExtrema/BRepExtrema_TriangleSet.hxx +++ b/src/BRepExtrema/BRepExtrema_TriangleSet.hxx @@ -39,19 +39,19 @@ public: public: //! @name methods implementing BVH set interface //! Returns total number of triangles. - Standard_Integer Size() const Standard_OVERRIDE; + Standard_EXPORT Standard_Integer Size() const Standard_OVERRIDE; //! Returns AABB of the given triangle. - BVH_Box Box (const Standard_Integer theIndex) const Standard_OVERRIDE; + Standard_EXPORT BVH_Box Box (const Standard_Integer theIndex) const Standard_OVERRIDE; //! Make inherited method Box() visible to avoid CLang warning using BVH_PrimitiveSet3d::Box; //! Returns centroid position along specified axis. - Standard_Real Center (const Standard_Integer theIndex, const Standard_Integer theAxis) const Standard_OVERRIDE; + Standard_EXPORT Standard_Real Center (const Standard_Integer theIndex, const Standard_Integer theAxis) const Standard_OVERRIDE; //! Swaps indices of two specified triangles. - void Swap (const Standard_Integer theIndex1, const Standard_Integer theIndex2) Standard_OVERRIDE; + Standard_EXPORT void Swap (const Standard_Integer theIndex1, const Standard_Integer theIndex2) Standard_OVERRIDE; public: