VTK
vtkFoldCase.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkFoldCase.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 =========================================================================*/
15 /*-------------------------------------------------------------------------
16  Copyright 2008 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 
48 #ifndef __vtkFoldCase_h
49 #define __vtkFoldCase_h
50 
51 #include <vtkTableAlgorithm.h>
52 
54  public vtkTableAlgorithm
55 {
56 public:
57  static vtkFoldCase* New();
59  void PrintSelf(ostream& os, vtkIndent indent);
60 
61  vtkSetStringMacro(ResultArray);
62  vtkGetStringMacro(ResultArray);
63 
64 //BTX
65 protected:
66  vtkFoldCase();
67  ~vtkFoldCase();
68 
69  virtual int RequestData(
70  vtkInformation* request,
71  vtkInformationVector** inputVector,
72  vtkInformationVector* outputVector);
73 
74  char* ResultArray;
75 
76 private:
77  vtkFoldCase(const vtkFoldCase &); // Not implemented.
78  void operator=(const vtkFoldCase &); // Not implemented.
79 //ETX
80 };
81 
82 #endif // __vtkFoldCase_h
83