VTK
dox/Infovis/vtkPPairwiseExtractHistogram2D.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkPPairwiseExtractHistogram2D.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 -------------------------------------------------------------------------*/
00043 #ifndef __vtkPPairwiseExtractHistogram2D_h
00044 #define __vtkPPairwiseExtractHistogram2D_h
00045 
00046 #include "vtkPairwiseExtractHistogram2D.h"
00047 
00048 class vtkExtractHistogram2D;
00049 class vtkMultiProcessController;
00050 
00051 class VTK_INFOVIS_EXPORT vtkPPairwiseExtractHistogram2D : public vtkPairwiseExtractHistogram2D
00052 {
00053 public:
00054   static vtkPPairwiseExtractHistogram2D* New();
00055   vtkTypeMacro(vtkPPairwiseExtractHistogram2D, vtkPairwiseExtractHistogram2D);
00056   void PrintSelf(ostream& os, vtkIndent indent);
00057 
00058   virtual void SetController(vtkMultiProcessController*);
00059   vtkGetObjectMacro(Controller,vtkMultiProcessController);
00060 
00061 protected:
00062   vtkPPairwiseExtractHistogram2D();
00063   ~vtkPPairwiseExtractHistogram2D();
00064 
00065   vtkMultiProcessController* Controller;
00066 
00069   virtual vtkExtractHistogram2D* NewHistogramFilter();
00070 
00071 private:
00072   vtkPPairwiseExtractHistogram2D(const vtkPPairwiseExtractHistogram2D&); // Not implemented
00073   void operator=(const vtkPPairwiseExtractHistogram2D&);   // Not implemented
00074 };
00075 
00076 #endif