Salome HOME
Update Help for VISU module.
[modules/visu.git] / src / PIPELINE / SALOME_ExtractGeometry.h
index ebbaec54ec5867f5052051cf99d6cc67442a8e3f..74c1ec301661b05c926adc3808dbdaa218a40285 100755 (executable)
@@ -1,44 +1,47 @@
 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
-// 
-//  This library is free software; you can redistribute it and/or 
-//  modify it under the terms of the GNU Lesser General Public 
-//  License as published by the Free Software Foundation; either 
-//  version 2.1 of the License. 
-// 
-//  This library is distributed in the hope that it will be useful, 
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
-//  Lesser General Public License for more details. 
-// 
-//  You should have received a copy of the GNU Lesser General Public 
-//  License along with this library; if not, write to the Free Software 
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
-// 
-//  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+//  This library is free software; you can redistribute it and/or
+//  modify it under the terms of the GNU Lesser General Public
+//  License as published by the Free Software Foundation; either
+//  version 2.1 of the License.
+//
+//  This library is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+//  Lesser General Public License for more details.
+//
+//  You should have received a copy of the GNU Lesser General Public
+//  License along with this library; if not, write to the Free Software
+//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+//  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
 
 #ifndef SALOME_ExtractGeometry_H
 #define SALOME_ExtractGeometry_H
 
 #include <vtkExtractGeometry.h>
 #include <vtkSmartPointer.h>
+#include <vtkImplicitBoolean.h>
+
 #include <vector>
 
-class vtkImplicitBoolean;
+//class vtkImplicitBoolean;
 
-class SALOME_ExtractGeometry : public vtkExtractGeometry{
+class SALOME_ExtractGeometry : public vtkExtractGeometry
+{
 public:
   vtkTypeMacro(SALOME_ExtractGeometry,vtkExtractGeometry);
 
   static SALOME_ExtractGeometry *New();
 
   void SetImplicitBoolean(vtkImplicitBoolean* theImplicitBoolean);
-  vtkImplicitBoolean* GetImplicitBoolean() const { 
+  vtkImplicitBoolean* GetImplicitBoolean() const {
     return myImplicitBoolean.GetPointer();
   }
 
   void SetStoreMapping(bool theStoreMapping);
-  bool GetStoreMapping() const { 
+  bool GetStoreMapping() const {
     return myStoreMapping;
   }
 
@@ -53,7 +56,7 @@ protected:
   void Execute2();
 
 private:
-  bool myStoreMapping;   
+  bool myStoreMapping;
   typedef std::vector<vtkIdType> TVectorId;
   TVectorId myElemVTK2ObjIds;
   TVectorId myNodeVTK2ObjIds;
@@ -64,7 +67,4 @@ private:
   void operator=(const SALOME_ExtractGeometry&);  // Not implemented.
 };
 
-
 #endif
-
-