VTK
/Users/kitware/Dashboards/MyTests/VTK_BLD_Release_docs/Utilities/Doxygen/dox/Infovis/Core/vtkArrayToTable.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkArrayToTable.h
00005 
00006 -------------------------------------------------------------------------
00007   Copyright 2008 Sandia Corporation.
00008   Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
00009   the U.S. Government retains certain rights in this software.
00010 -------------------------------------------------------------------------
00011 
00012   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00013   All rights reserved.
00014   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00015 
00016      This software is distributed WITHOUT ANY WARRANTY; without even
00017      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00018      PURPOSE.  See the above copyright notice for more information.
00019 
00020 =========================================================================*/
00021 
00033 #ifndef vtkArrayToTable_h
00034 #define vtkArrayToTable_h
00035 
00036 #include "vtkInfovisCoreModule.h" // For export macro
00037 #include "vtkTableAlgorithm.h"
00038 
00039 class VTKINFOVISCORE_EXPORT vtkArrayToTable : public vtkTableAlgorithm
00040 {
00041 public:
00042   static vtkArrayToTable* New();
00043   vtkTypeMacro(vtkArrayToTable, vtkTableAlgorithm);
00044   void PrintSelf(ostream& os, vtkIndent indent);
00045 
00046 protected:
00047   vtkArrayToTable();
00048   ~vtkArrayToTable();
00049 
00050   int FillInputPortInformation(int, vtkInformation*);
00051 
00052   int RequestData(
00053     vtkInformation*,
00054     vtkInformationVector**,
00055     vtkInformationVector*);
00056 
00057 private:
00058   vtkArrayToTable(const vtkArrayToTable&); // Not implemented
00059   void operator=(const vtkArrayToTable&);   // Not implemented
00060 };
00061 
00062 #endif
00063