VTK
dox/Infovis/Core/vtkTableToTreeFilter.h
Go to the documentation of this file.
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 "vtkInfovisCoreModule.h" // For export macro
00041 #include "vtkTreeAlgorithm.h"
00042 
00043 class VTKINFOVISCORE_EXPORT vtkTableToTreeFilter : public vtkTreeAlgorithm
00044 {
00045 public:
00046   static vtkTableToTreeFilter* New();
00047   vtkTypeMacro(vtkTableToTreeFilter,vtkTreeAlgorithm);
00048   void PrintSelf(ostream& os, vtkIndent indent);
00049 
00050 protected:
00051   vtkTableToTreeFilter();
00052   ~vtkTableToTreeFilter();
00053 
00054   int RequestData(
00055     vtkInformation*,
00056     vtkInformationVector**,
00057     vtkInformationVector*);
00058 
00059   int FillOutputPortInformation(
00060     int vtkNotUsed(port), vtkInformation* info);
00061   int FillInputPortInformation(
00062     int vtkNotUsed(port), vtkInformation* info);
00063 
00064 private:
00065   vtkTableToTreeFilter(const vtkTableToTreeFilter&); // Not implemented
00066   void operator=(const vtkTableToTreeFilter&);   // Not implemented
00067 };
00068 
00069 #endif
00070