Salome HOME
Merge with version on tag OCC-V2_1_0d
[modules/geom.git] / src / OBJECT / GEOM_OCCReader.cxx
index 500fdd35660a98a30c48c8f73e1aee9fe159eba0..933c670e94537ee655e2285a98f82a0d295eb754 100644 (file)
 //  Module : GEOM
 //  $Header$
 
-using namespace std;
 #include "GEOM_OCCReader.h"
 
-// SALOME Includes
-#include "utilities.h"
-
 // VTK Includes
-#include "VTKViewer_Common.h"
+#include <vtkPoints.h>
+#include <vtkCellArray.h>
+
+#include <vtkObjectFactory.h>
+#include <vtkPolyData.h>
+#include <vtkPolyDataMapper.h>
 #include <vtkMergePoints.h>
 
+#include <vtkTransform.h>
+#include <vtkMatrix4x4.h>
+
 // OpenCASCADE Includes
 #include <BRepAdaptor_Surface.hxx>
 #include <TopExp_Explorer.hxx>
@@ -71,6 +75,9 @@ using namespace std;
 #include <TColStd_Array1OfReal.hxx>
 #include <Adaptor3d_HCurve.hxx>
 
+#include "utilities.h"
+
+using namespace std;
 
 #define MAX2(X, Y)     (  Abs(X) > Abs(Y)? Abs(X) : Abs(Y) )
 #define MAX3(X, Y, Z)  ( MAX2 ( MAX2(X,Y) , Z) )