Salome HOME
9f9432d4adbb1fef45bd6aa8fe7107d2db43ea2f
[modules/paravis.git] / src / Plugins / MEDWriter / IO / vtkMEDWriter.h
1 // Copyright (C) 2016  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 "vtkPVVTKExtensionsDefaultModule.h" //needed for exports
25 #include "vtkDataObjectAlgorithm.h"
26
27 class vtkMutableDirectedGraph;
28
29 class VTK_EXPORT vtkMEDWriter : public vtkDataObjectAlgorithm
30 {
31 public:
32   static vtkMEDWriter* New();
33   vtkTypeMacro(vtkMEDWriter, vtkDataObjectAlgorithm)
34   void PrintSelf(ostream& os, vtkIndent indent);
35   
36   vtkSetStringMacro(FileName);
37   vtkGetStringMacro(FileName);
38   int Write();
39   vtkGetMacro(WriteAllTimeSteps, int);
40   vtkSetMacro(WriteAllTimeSteps, int);
41   vtkBooleanMacro(WriteAllTimeSteps, int);
42 protected:
43   vtkMEDWriter();
44   ~vtkMEDWriter();
45
46   int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector);
47   int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector);
48   int RequestUpdateExtent(vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector);
49 private:
50   vtkMEDWriter(const vtkMEDWriter&);
51   void operator=(const vtkMEDWriter&); // Not implemented.
52  private:
53   int WriteAllTimeSteps;
54   int NumberOfTimeSteps;
55   int CurrentTimeIndex;
56   char *FileName;
57   //BTX
58   //ETX
59 };
60
61 #endif