VTK
vtkPBivariateLinearTableThreshold.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3 Program: Visualization Toolkit
4 Module: vtkPBivariateLinearTableThreshold.h
5 
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
15 /*-------------------------------------------------------------------------
16  Copyright 2009 Sandia Corporation.
17  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18  the U.S. Government retains certain rights in this software.
19 -------------------------------------------------------------------------*/
29 #ifndef __vtkPBivariateLinearTableThreshold__h
30 #define __vtkPBivariateLinearTableThreshold__h
31 
32 #include "vtkFiltersParallelStatisticsModule.h" // For export macro
34 
35 class vtkIdTypeArray;
37 
38 class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPBivariateLinearTableThreshold : public vtkBivariateLinearTableThreshold
39 {
40 public:
43  void PrintSelf(ostream& os, vtkIndent indent);
44 
46 
48  virtual void SetController(vtkMultiProcessController*);
49  vtkGetObjectMacro(Controller,vtkMultiProcessController);
50 protected:
54 
55  virtual int RequestData(
59 
61 private:
63  void operator=(const vtkPBivariateLinearTableThreshold&); // Not implemented
64 };
65 
66 #endif