vtkCDBWriter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCDBWriter.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
24 #ifndef vtkCDBWriter_h
25 #define vtkCDBWriter_h
26 
27 #include "vtkPVVTKExtensionsFiltersPythonModule.h" //needed for exports
28 #include "vtkTableAlgorithm.h"
29 
31 {
32 public:
33  static vtkCDBWriter* New();
35  void PrintSelf(ostream& os, vtkIndent indent) override;
36 
38 
42  vtkSetStringMacro(Path);
43  vtkGetStringMacro(Path);
45 
49  void Write();
50 
51 protected:
52  vtkCDBWriter();
53  ~vtkCDBWriter() override;
54 
55  int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
56  vtkInformationVector* outputVector) override;
57 
58 private:
59  vtkCDBWriter(const vtkCDBWriter&) = delete;
60  void operator=(const vtkCDBWriter&) = delete;
61  char* Path;
62 };
63 
64 #endif
static vtkTableAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent) VTK_OVERRIDE
#define VTKPVVTKEXTENSIONSFILTERSPYTHON_EXPORT
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
void operator=(const vtkObjectBase &)
A Cinema Database writer.
Definition: vtkCDBWriter.h:30