Version: 8.3.0
vtkMEDWriter.h
Go to the documentation of this file.
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();
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 
48  int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector);
49 
50 private:
51  vtkMEDWriter(const vtkMEDWriter&);
52  void operator=(const vtkMEDWriter&); // Not implemented.
53  private:
54  int WriteAllTimeSteps;
55  char *FileName;
56  bool IsTouched;
57  //BTX
58  //ETX
59 };
60 
61 #endif