OCC22322 Improvement of Extrema performance Standard_EXPORT directive added to the...
[occt.git] / src / BRepExtrema / BRepExtrema_DistanceSS.hxx
index 4464411..522133b 100644 (file)
@@ -130,7 +130,7 @@ class BRepExtrema_DistanceSS
  private:
 
   //! computes the distance between two Shapes ( face edge vertex) <br>
-  void Perform(const TopoDS_Shape& S1,const TopoDS_Shape& S2,const Bnd_Box& B1,const Bnd_Box& B2);
+  Standard_EXPORT void Perform(const TopoDS_Shape& S1,const TopoDS_Shape& S2,const Bnd_Box& B1,const Bnd_Box& B2);
 
   //! computes the distance between two vertices <br>
   void Perform(const TopoDS_Vertex& S1,const TopoDS_Vertex& S2);
@@ -140,25 +140,25 @@ class BRepExtrema_DistanceSS
   void Perform(const TopoDS_Vertex& S1,const TopoDS_Face& S2,const Bnd_Box& B1,const Bnd_Box& B2);
 
   //! computes the minimum distance between an edge and a vertex <br>
-  void Perform(const TopoDS_Edge& S1,const TopoDS_Vertex& S2,const Bnd_Box& B1,const Bnd_Box& B2)
-  {
+  void Perform(const TopoDS_Edge& S1,const TopoDS_Vertex& S2,const Bnd_Box& B1,const Bnd_Box& B2);
+  /*{
     Perform(S2, S1, B2, B1);
-  }
+  }*/
   //! computes the minimum distance between two edges <br>
   void Perform(const TopoDS_Edge& S1,const TopoDS_Edge& S2,const Bnd_Box& B1,const Bnd_Box& B2);
   //! computes the minimum distance an edge and a face <br>
   void Perform(const TopoDS_Edge& S1,const TopoDS_Face& S2,const Bnd_Box& B1,const Bnd_Box& B2);
 
   //! computes the minimum distance betwwen a face and a vertex <br>
-  void Perform(const TopoDS_Face& S1,const TopoDS_Vertex& S2,const Bnd_Box& B1,const Bnd_Box& B2)
-  {
+  void Perform(const TopoDS_Face& S1,const TopoDS_Vertex& S2,const Bnd_Box& B1,const Bnd_Box& B2);
+  /*{
     Perform(S2, S1, B2, B1);
-  }
+  }*/
   //! computes the minimum distance between a face and an edge <br>
-  void Perform(const TopoDS_Face& S1,const TopoDS_Edge& S2,const Bnd_Box& B1,const Bnd_Box& B2)
-  {
+  void Perform(const TopoDS_Face& S1,const TopoDS_Edge& S2,const Bnd_Box& B1,const Bnd_Box& B2);
+  /*{
     Perform(S2, S1, B2, B1);
-  }
+  }*/
   //! computes the minimum distance between two faces <br>
   void Perform(const TopoDS_Face& S1,const TopoDS_Face& S2,const Bnd_Box& B1,const Bnd_Box& B2);