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 "vtkTableAlgorithm.h"
63 
64 class vtkStringArray;
65 
67 {
68 public:
69  static vtkBoostSplitTableField* New();
71  void PrintSelf(ostream& os, vtkIndent indent);
72 
73  void ClearFields();
74  void AddField(const char* field, const char* delimiters);
75 
76 protected:
79 
80  int RequestData(
84 
87 
88 private:
89 //BTX
90  class implementation;
91 //ETX
92  vtkBoostSplitTableField(const vtkBoostSplitTableField&); // Not implemented
93  void operator=(const vtkBoostSplitTableField&); // Not implemented
94 };
95 
96 #endif