1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkTableToTreeFilter.h,v $
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/*----------------------------------------------------------------------------
Copyright (c) Sandia Corporation
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
----------------------------------------------------------------------------*/
// .NAME vtkTableToTreeFilter - Filter that converts a vtkTable to a vtkTree
//
// .SECTION Description
//
// vtkTableToTreeFilter is a filter for converting a vtkTable data structure
// into a vtkTree datastructure. Currently, this will convert the table into
// a star, with each row of the table as a child of a new root node.
// The columns of the table are passed as node fields of the tree.
#ifndef __vtkTableToTreeFilter_h
#define __vtkTableToTreeFilter_h
#include "vtkTreeAlgorithm.h"
class VTK_INFOVIS_EXPORT vtkTableToTreeFilter : public vtkTreeAlgorithm
{
public:
static vtkTableToTreeFilter* New();
vtkTypeRevisionMacro(vtkTableToTreeFilter,vtkTreeAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
protected:
vtkTableToTreeFilter();
~vtkTableToTreeFilter();
int RequestData(
vtkInformation*,
vtkInformationVector**,
vtkInformationVector*);
int FillOutputPortInformation(
int vtkNotUsed(port), vtkInformation* info);
int FillInputPortInformation(
int vtkNotUsed(port), vtkInformation* info);
private:
vtkTableToTreeFilter(const vtkTableToTreeFilter&); // Not implemented
void operator=(const vtkTableToTreeFilter&); // Not implemented
};
#endif
|