Salome HOME
0521bde75bba029d50f2ac7e6df08a137f70beb9
[modules/paravis.git] / src / Plugins / MEDWriter / plugin / MEDWriterIO / vtkMEDWriter.h
1 // Copyright (C) 2016-2022  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, or (at your option) any later version.
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 // Author : Anthony Geay (EDF R&D)
20
21 #ifndef vtkMEDWriter_h__
22 #define vtkMEDWriter_h__
23
24 #include "vtkDataObjectAlgorithm.h"
25
26 class vtkMutableDirectedGraph;
27
28 class VTK_EXPORT vtkMEDWriter : public vtkDataObjectAlgorithm
29 {
30 public:
31   static vtkMEDWriter* New();
32   vtkTypeMacro(vtkMEDWriter, vtkDataObjectAlgorithm)
33   void PrintSelf(ostream& os, vtkIndent indent);
34   
35   vtkSetStringMacro(FileName);
36   vtkGetStringMacro(FileName);
37   int Write();
38   vtkGetMacro(WriteAllTimeSteps, int);
39   vtkSetMacro(WriteAllTimeSteps, int);
40   vtkBooleanMacro(WriteAllTimeSteps, int);
41 protected:
42   vtkMEDWriter();
43   ~vtkMEDWriter();
44
45   int RequestInformation(vtkInformation * request, vtkInformationVector **inputVector, vtkInformationVector * outputVector);
46   int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector);
47   int RequestUpdateExtent(vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector);
48 private:
49   vtkMEDWriter(const vtkMEDWriter&);
50   void operator=(const vtkMEDWriter&); // Not implemented.
51  private:
52   int WriteAllTimeSteps;
53   int NumberOfTimeSteps;
54   int CurrentTimeIndex;
55   char *FileName;
56   //BTX
57   //ETX
58 };
59
60 #endif