]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
*** empty log message ***
authorageay <ageay>
Thu, 13 Mar 2008 15:01:58 +0000 (15:01 +0000)
committerageay <ageay>
Thu, 13 Mar 2008 15:01:58 +0000 (15:01 +0000)
src/INTERP_KERNEL/Geometric2D/Bounds.cxx
src/INTERP_KERNEL/Geometric2D/ComposedEdge.cxx
src/INTERP_KERNEL/Geometric2D/Edge.cxx
src/INTERP_KERNEL/Geometric2D/Edge.hxx
src/INTERP_KERNEL/Geometric2D/EdgeArcCircle.cxx
src/INTERP_KERNEL/Geometric2D/EdgeLin.cxx
src/INTERP_KERNEL/Geometric2D/ElementaryEdge.cxx
src/INTERP_KERNEL/Geometric2D/ElementaryEdge.hxx

index 0d4f2849d638b732a2d0ca3dc7d95834ad0756a8..74bfc7ab6e3c1b74f7746477172109f1f1278668 100644 (file)
@@ -1,5 +1,5 @@
 #include "Bounds.hxx"
-#include "Exception.hxx"
+#include "InterpolationUtils.hxx"
 #include "Node.hxx"
 
 #include <cmath>
index 205fb8274ac34245d1c5599a4b02a7a964eaf78d..ed0f94c3f92520d1d2d44aa046bebba821843374 100644 (file)
@@ -1,7 +1,7 @@
 #include "ComposedEdge.hxx"
 #include "ElementaryEdge.hxx"
 #include "EdgeInfLin.hxx"
-#include "Exception.hxx"
+#include "InterpolationUtils.hxx"
 
 #include <algorithm>
 #include <iterator>
index 81cff38d40c66d442f7047ff9c0fcdd709e9f858..b860bc287227d7fb590d93e6bc58aa36b3c298cf 100644 (file)
@@ -3,7 +3,6 @@
 #include "EdgeInfLin.hxx"
 //#include "EdgeParabol.hxx"
 #include "EdgeArcCircle.hxx"
-#include "Exception.hxx"
 
 using namespace std;
 using namespace INTERP_KERNEL;
index b73c86dd0f088decc3c0476c92958a7f700c1a5c..608fed38a4720439b65346e800a1451a0083574b 100644 (file)
@@ -1,8 +1,8 @@
 #ifndef __EDGE_HXX__
 #define __EDGE_HXX__
 
+#include "InterpolationUtils.hxx"
 #include "ComposedEdge.hxx"
-#include "Exception.hxx"
 #include "Bounds.hxx"
 #include "Node.hxx"
 
@@ -111,6 +111,7 @@ namespace INTERP_KERNEL
     //! All non symetric methods are relative to 'e1'.
     Intersector(const Edge& e1, const Edge& e2):_e1(e1),_e2(e2) { }
   public:
+    virtual ~Intersector() { }
     virtual bool keepOrder() const = 0;
     //!to call only if 'areOverlapped' have been set to true when areOverlappedOrOnlyColinears was called
     virtual bool haveTheySameDirection() const = 0;
index d3937bb8b9b92772732c8c2931d270ae0602a453..bd8ad250e50a5879681905e6c28837f434ee0fec 100644 (file)
@@ -1,6 +1,6 @@
 #include "EdgeArcCircle.hxx"
 #include "EdgeLin.hxx"
-#include "Exception.hxx"
+#include "InterpolationUtils.hxx"
 #include "Node.hxx"
 
 #include <sstream>
index 2ff40f01ec98e0398c63461d24c6439a21d83d6d..749eb08e1c3f3150cff09442f58ca2cdffe4bcf6 100644 (file)
@@ -1,6 +1,5 @@
 #include "EdgeLin.hxx"
 #include "Node.hxx"
-#include "Exception.hxx"
 
 using namespace std;
 using namespace INTERP_KERNEL;
index af97833ab997e9429451cd4f18b2500bd4cc81a2..797feee4853cedad26662057d6df3064c4e476f7 100644 (file)
@@ -1,5 +1,4 @@
 #include "ElementaryEdge.hxx"
-#include "Exception.hxx"
 #include "Edge.hxx"
 
 using namespace INTERP_KERNEL;
index adcdca29824060c987bdaa13e172cb8c66494ba9..364d22f165946b15cef5781aa40dc04779783b29 100644 (file)
@@ -2,7 +2,7 @@
 #define __ELEMENTARYEDGE_HXX__
 
 #include "AbstractEdge.hxx"
-#include "Exception.hxx"
+#include "InterpolationUtils.hxx"
 #include "Edge.hxx"
 
 namespace INTERP_KERNEL