VTK
vtkDelimitedTextWriter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkDelimitedTextWriter.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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 =========================================================================*/
15 /*-------------------------------------------------------------------------
16  Copyright 2009 Sandia Corporation.
17  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18  the U.S. Government retains certain rights in this software.
19 -------------------------------------------------------------------------*/
20 
29 #ifndef vtkDelimitedTextWriter_h
30 #define vtkDelimitedTextWriter_h
31 
32 #include "vtkIOCoreModule.h" // For export macro
33 #include "vtkWriter.h"
34 
35 class vtkStdString;
36 class vtkTable;
37 
39 {
40 public:
41  static vtkDelimitedTextWriter* New();
43  void PrintSelf(ostream& os, vtkIndent indent);
44 
46 
47  vtkSetStringMacro(FieldDelimiter);
48  vtkGetStringMacro(FieldDelimiter);
50 
52 
54  vtkSetStringMacro(StringDelimiter);
55  vtkGetStringMacro(StringDelimiter);
57 
59 
60  vtkSetStringMacro(FileName);
61  vtkGetStringMacro(FileName);
63 
65 
67  vtkSetMacro(UseStringDelimiter, bool);
68  vtkGetMacro(UseStringDelimiter, bool);
70 
72 
73  vtkSetMacro(WriteToOutputString,bool);
74  vtkGetMacro(WriteToOutputString,bool);
75  vtkBooleanMacro(WriteToOutputString,bool);
77 
80  char *RegisterAndGetOutputString();
81 
83 
85  vtkStdString GetString(vtkStdString string);
86 protected:
90 
92  char* OutputString;
93 
94  bool OpenStream();
95 
96  virtual void WriteData();
97  virtual void WriteTable(vtkTable* rectilinearGrid);
98 
99  // see algorithm for more info.
100  // This writer takes in vtkTable.
102 
103  char* FileName;
107 //BTX
108  ostream* Stream;
109 //ETX
110 private:
111  vtkDelimitedTextWriter(const vtkDelimitedTextWriter&); // Not implemented.
112  void operator=(const vtkDelimitedTextWriter&); // Not implemented.
113 };
114 
115 
116 
117 #endif
118 
Wrapper around std::string to keep symbols short.
Definition: vtkStdString.h:46
Store vtkAlgorithm input/output information.
#define VTKIOCORE_EXPORT
abstract class to write data to file(s)
Definition: vtkWriter.h:44
Delimited text writer for vtkTable Writes a vtkTable as a delimited text file (such as CSV)...
a simple class to control print indentation
Definition: vtkIndent.h:38
virtual int FillInputPortInformation(int port, vtkInformation *info)
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:67
static vtkAlgorithm * New()
virtual void WriteData()=0
void PrintSelf(ostream &os, vtkIndent indent)