VTK  9.1.0
vtkDataObjectWriter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkDataObjectWriter.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 =========================================================================*/
30 #ifndef vtkDataObjectWriter_h
31 #define vtkDataObjectWriter_h
32 
33 #include "vtkDataWriter.h" // Needs data because it calls methods on it
34 #include "vtkIOLegacyModule.h" // For export macro
35 #include "vtkStdString.h" // For string used in api
36 #include "vtkWriter.h"
37 
38 class VTKIOLEGACY_EXPORT vtkDataObjectWriter : public vtkWriter
39 {
40 public:
43  void PrintSelf(ostream& os, vtkIndent indent) override;
44 
46 
49  void SetFileName(VTK_FILEPATH const char* filename) { this->Writer->SetFileName(filename); }
50  VTK_FILEPATH char* GetFileName() { return this->Writer->GetFileName(); }
51  void SetHeader(const char* header) { this->Writer->SetHeader(header); }
52  char* GetHeader() { return this->Writer->GetHeader(); }
53  void SetFileType(int type) { this->Writer->SetFileType(type); }
54  int GetFileType() { return this->Writer->GetFileType(); }
55  void SetFileTypeToASCII() { this->Writer->SetFileType(VTK_ASCII); }
56  void SetFileTypeToBinary() { this->Writer->SetFileType(VTK_BINARY); }
57  void SetWriteToOutputString(int b) { this->Writer->SetWriteToOutputString(b); }
58  void WriteToOutputStringOn() { this->Writer->WriteToOutputStringOn(); }
59  void WriteToOutputStringOff() { this->Writer->WriteToOutputStringOff(); }
60  int GetWriteToOutputString() { return this->Writer->GetWriteToOutputString(); }
61  char* GetOutputString() { return this->Writer->GetOutputString(); }
62  vtkStdString GetOutputStdString() { return this->Writer->GetOutputStdString(); }
63  vtkIdType GetOutputStringLength() { return this->Writer->GetOutputStringLength(); }
64  unsigned char* GetBinaryOutputString() { return this->Writer->GetBinaryOutputString(); }
65  void SetFieldDataName(const char* fieldname) { this->Writer->SetFieldDataName(fieldname); }
66  char* GetFieldDataName() { return this->Writer->GetFieldDataName(); }
68 
69 protected:
72 
73  void WriteData() override;
75 
77 
78 private:
80  void operator=(const vtkDataObjectWriter&) = delete;
81 };
82 
83 #endif
write vtk field data
vtkDataWriter * Writer
static vtkDataObjectWriter * New()
~vtkDataObjectWriter() override
void WriteToOutputStringOn()
Methods delegated to vtkDataWriter, see vtkDataWriter.
void SetWriteToOutputString(int b)
Methods delegated to vtkDataWriter, see vtkDataWriter.
char * GetHeader()
Methods delegated to vtkDataWriter, see vtkDataWriter.
int GetWriteToOutputString()
Methods delegated to vtkDataWriter, see vtkDataWriter.
void WriteToOutputStringOff()
Methods delegated to vtkDataWriter, see vtkDataWriter.
unsigned char * GetBinaryOutputString()
Methods delegated to vtkDataWriter, see vtkDataWriter.
vtkStdString GetOutputStdString()
Methods delegated to vtkDataWriter, see vtkDataWriter.
VTK_FILEPATH char * GetFileName()
Methods delegated to vtkDataWriter, see vtkDataWriter.
int GetFileType()
Methods delegated to vtkDataWriter, see vtkDataWriter.
void SetFieldDataName(const char *fieldname)
Methods delegated to vtkDataWriter, see vtkDataWriter.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void SetFileType(int type)
Methods delegated to vtkDataWriter, see vtkDataWriter.
char * GetOutputString()
Methods delegated to vtkDataWriter, see vtkDataWriter.
char * GetFieldDataName()
Methods delegated to vtkDataWriter, see vtkDataWriter.
void WriteData() override
vtkIdType GetOutputStringLength()
Methods delegated to vtkDataWriter, see vtkDataWriter.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
void SetHeader(const char *header)
Methods delegated to vtkDataWriter, see vtkDataWriter.
void SetFileTypeToBinary()
Methods delegated to vtkDataWriter, see vtkDataWriter.
void SetFileName(VTK_FILEPATH const char *filename)
Methods delegated to vtkDataWriter, see vtkDataWriter.
void SetFileTypeToASCII()
Methods delegated to vtkDataWriter, see vtkDataWriter.
helper class for objects that write VTK data files
Definition: vtkDataWriter.h:48
a simple class to control print indentation
Definition: vtkIndent.h:34
Store vtkAlgorithm input/output information.
Wrapper around std::string to keep symbols short.
Definition: vtkStdString.h:36
abstract class to write data to file(s)
Definition: vtkWriter.h:46
@ info
Definition: vtkX3D.h:382
@ port
Definition: vtkX3D.h:453
@ type
Definition: vtkX3D.h:522
int vtkIdType
Definition: vtkType.h:332
#define VTK_FILEPATH
#define VTK_BINARY
Definition: vtkWriter.h:43
#define VTK_ASCII
Definition: vtkWriter.h:42