VTK
vtkBoostSplitTableField.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkBoostSplitTableField.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 =========================================================================*/
59 #ifndef vtkBoostSplitTableField_h
60 #define vtkBoostSplitTableField_h
61 
62 #include "vtkInfovisBoostGraphAlgorithmsModule.h" // For export macro
63 #include "vtkTableAlgorithm.h"
64 
65 class vtkStringArray;
66 
67 class VTKINFOVISBOOSTGRAPHALGORITHMS_EXPORT vtkBoostSplitTableField : public vtkTableAlgorithm
68 {
69 public:
70  static vtkBoostSplitTableField* New();
72  void PrintSelf(ostream& os, vtkIndent indent);
73 
74  void ClearFields();
75  void AddField(const char* field, const char* delimiters);
76 
77 protected:
80 
81  int RequestData(
85 
88 
89 private:
90 //BTX
91  class implementation;
92 //ETX
93  vtkBoostSplitTableField(const vtkBoostSplitTableField&); // Not implemented
94  void operator=(const vtkBoostSplitTableField&); // Not implemented
95 };
96 
97 #endif
void PrintSelf(ostream &os, vtkIndent indent)
static vtkTableAlgorithm * New()
Store vtkAlgorithm input/output information.
a vtkAbstractArray subclass for strings
"Splits" one-or-more table fields by duplicating rows containing delimited data.
a simple class to control print indentation
Definition: vtkIndent.h:38
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
Superclass for algorithms that produce only vtkTables as output.
Store zero or more vtkInformation instances.