00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkPBivariateLinearTableThreshold.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 2009 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 -------------------------------------------------------------------------*/ 00029 #ifndef __vtkPBivariateLinearTableThreshold__h 00030 #define __vtkPBivariateLinearTableThreshold__h 00031 00032 #include "vtkBivariateLinearTableThreshold.h" 00033 00034 class vtkIdTypeArray; 00035 class vtkMultiProcessController; 00036 00037 class VTK_INFOVIS_EXPORT vtkPBivariateLinearTableThreshold : public vtkBivariateLinearTableThreshold 00038 { 00039 public: 00040 static vtkPBivariateLinearTableThreshold* New(); 00041 vtkTypeMacro(vtkPBivariateLinearTableThreshold, vtkBivariateLinearTableThreshold); 00042 void PrintSelf(ostream& os, vtkIndent indent); 00043 00045 00047 virtual void SetController(vtkMultiProcessController*); 00048 vtkGetObjectMacro(Controller,vtkMultiProcessController); 00049 protected: 00050 vtkPBivariateLinearTableThreshold(); 00051 virtual ~vtkPBivariateLinearTableThreshold(); 00053 00054 virtual int RequestData( 00055 vtkInformation*, 00056 vtkInformationVector**, 00057 vtkInformationVector*); 00058 00059 vtkMultiProcessController* Controller; 00060 private: 00061 vtkPBivariateLinearTableThreshold(const vtkPBivariateLinearTableThreshold&); // Not implemented 00062 void operator=(const vtkPBivariateLinearTableThreshold&); // Not implemented 00063 }; 00064 00065 #endif