VTK
dox/Filters/ParallelImaging/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 "vtkFiltersParallelImagingModule.h" // For export macro
00047 #include "vtkPairwiseExtractHistogram2D.h"
00048 
00049 class vtkExtractHistogram2D;
00050 class vtkMultiProcessController;
00051 
00052 class VTKFILTERSPARALLELIMAGING_EXPORT vtkPPairwiseExtractHistogram2D : public vtkPairwiseExtractHistogram2D
00053 {
00054 public:
00055   static vtkPPairwiseExtractHistogram2D* New();
00056   vtkTypeMacro(vtkPPairwiseExtractHistogram2D, vtkPairwiseExtractHistogram2D);
00057   void PrintSelf(ostream& os, vtkIndent indent);
00058 
00059   virtual void SetController(vtkMultiProcessController*);
00060   vtkGetObjectMacro(Controller,vtkMultiProcessController);
00061 
00062 protected:
00063   vtkPPairwiseExtractHistogram2D();
00064   ~vtkPPairwiseExtractHistogram2D();
00065 
00066   vtkMultiProcessController* Controller;
00067 
00070   virtual vtkExtractHistogram2D* NewHistogramFilter();
00071 
00072 private:
00073   vtkPPairwiseExtractHistogram2D(const vtkPPairwiseExtractHistogram2D&); // Not implemented
00074   void operator=(const vtkPPairwiseExtractHistogram2D&);   // Not implemented
00075 };
00076 
00077 #endif