Salome HOME
Correct vector presentation color.
[modules/geom.git] / src / OBJECT / GEOM_OCCReader.h
index 3c3b7204ac739ebde7c2abb872961737832ab343..707b8136fe1fe9f2d6317b9e214533dbbe5d1cd3 100644 (file)
@@ -1,9 +1,29 @@
-//  File      : GEOM_OCCReader.h
-//  Created   : Wed Feb 20 17:24:59 2002
-//  Author    : Christophe ATTANASIO
-//  Project   : SALOME
-//  Module    : GEOM
-//  Copyright : Open CASCADE 2002
+//  GEOM OBJECT : interactive object for Geometry entities visualization
+//
+//  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.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+//
+//
+//  File   : GEOM_OCCReader.h
+//  Author : Christophe ATTANASIO
+//  Module : GEOM
 //  $Header$
 
 /*!
 #ifndef GEOM_OCCREADER_H
 #define GEOM_OCCREADER_H
 
-// VTK
 #include <vtkPolyDataSource.h>
-#include <vtkPoints.h>
-#include <vtkCellArray.h>
+
+class vtkPoints;
+class vtkCellArray;
 
 // OpenCASCADE
 #include <TopoDS_Shape.hxx>
@@ -32,6 +52,7 @@
 #else
 #define VTKOCC_EXPORT
 #endif
+
 class VTKOCC_EXPORT GEOM_OCCReader : public vtkPolyDataSource {
 
   // methods   
@@ -42,7 +63,7 @@ class VTKOCC_EXPORT GEOM_OCCReader : public vtkPolyDataSource {
 
   const TopoDS_Shape& getTopo();
 
-  void setTopo(const TopoDS_Shape& ashape);
+  void setTopo(const TopoDS_Shape& ashape, bool isVector = false);
 
   int  getDisplayMode();
   void setDisplayMode(int);
@@ -116,6 +137,7 @@ class VTKOCC_EXPORT GEOM_OCCReader : public vtkPolyDataSource {
   int                   amode;
   int                    nbisos;
   TopoDS_Shape           myShape;
+  bool                   myIsVector;
 
 };