VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkTableToTreeFilter.h 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00015 /*------------------------------------------------------------------------- 00016 Copyright 2008 Sandia Corporation. 00017 Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, 00018 the U.S. Government retains certain rights in this software. 00019 -------------------------------------------------------------------------*/ 00037 #ifndef __vtkTableToTreeFilter_h 00038 #define __vtkTableToTreeFilter_h 00039 00040 #include "vtkTreeAlgorithm.h" 00041 00042 class VTK_INFOVIS_EXPORT vtkTableToTreeFilter : public vtkTreeAlgorithm 00043 { 00044 public: 00045 static vtkTableToTreeFilter* New(); 00046 vtkTypeMacro(vtkTableToTreeFilter,vtkTreeAlgorithm); 00047 void PrintSelf(ostream& os, vtkIndent indent); 00048 00049 protected: 00050 vtkTableToTreeFilter(); 00051 ~vtkTableToTreeFilter(); 00052 00053 int RequestData( 00054 vtkInformation*, 00055 vtkInformationVector**, 00056 vtkInformationVector*); 00057 00058 int FillOutputPortInformation( 00059 int vtkNotUsed(port), vtkInformation* info); 00060 int FillInputPortInformation( 00061 int vtkNotUsed(port), vtkInformation* info); 00062 00063 private: 00064 vtkTableToTreeFilter(const vtkTableToTreeFilter&); // Not implemented 00065 void operator=(const vtkTableToTreeFilter&); // Not implemented 00066 }; 00067 00068 #endif 00069