Salome HOME
Merge from BR_PORTING_VTK6 01/03/2013
[modules/paravis.git] / src / Plugins / MedReader / IO / vtkMedFilter.h
1 // Copyright (C) 2010-2011  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef __vtkMedFilter_h_
21 #define __vtkMedFilter_h_
22
23 #include "vtkObject.h"
24 #include"vtkMed.h"
25
26 class VTK_EXPORT vtkMedFilter : public vtkObject
27 {
28 public:
29   static vtkMedFilter* New();
30   vtkTypeMacro(vtkMedFilter, vtkObject)
31   void PrintSelf(ostream& os, vtkIndent indent);
32
33   void SetFilterSizes( int , int , int , int , int );
34
35   void GetFilterSizes( int& , int& , int& , int& , int& );
36
37 protected :
38   vtkMedFilter();
39   ~vtkMedFilter();
40
41   //med_filter Filter;
42     int  _start;
43     int  _stride;
44     int  _count;
45     int  _blocksize;
46     int  _lastblocksize;
47 };
48
49 #endif //__vtkMedFilter_h_