Salome HOME
For MEDReader in // mode : the ghost cell generator is invoked by default
[modules/paravis.git] / src / Plugins / MEDReader / IO / vtkELNOMeshFilter.h
index 611972e9963827b1864f0f692ac5e962a229a372..f24958d628d5c859fb3ce756c36395033ee27dc7 100644 (file)
@@ -1,9 +1,9 @@
-// Copyright (C) 2010-2014  CEA/DEN, EDF R&D
+// Copyright (C) 2010-2016  CEA/DEN, EDF R&D
 //
 // 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.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -29,15 +29,18 @@ public:
   vtkTypeMacro(vtkELNOMeshFilter,vtkUnstructuredGridAlgorithm);
   void PrintSelf(ostream& os, vtkIndent indent);
 
+  vtkGetMacro(ShrinkFactor, double);
+  vtkSetMacro(ShrinkFactor, double);
 protected:
   vtkELNOMeshFilter();
   ~vtkELNOMeshFilter();
 
   int RequestData(vtkInformation *, vtkInformationVector **,
       vtkInformationVector *);
-
 private:
   vtkELNOMeshFilter(const vtkELNOMeshFilter&);
   void operator =(const vtkELNOMeshFilter&);
+private:
+  double ShrinkFactor;
 };
 #endif