Main Page | Directories | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

vtkBlankStructuredGridWithImage.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkBlankStructuredGridWithImage.h,v $
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 =========================================================================*/
00046 #ifndef __vtkBlankStructuredGridWithImage_h
00047 #define __vtkBlankStructuredGridWithImage_h
00048 
00049 #include "vtkStructuredGridToStructuredGridFilter.h"
00050 
00051 class vtkImageData;
00052 
00053 class VTK_GRAPHICS_EXPORT vtkBlankStructuredGridWithImage : public vtkStructuredGridToStructuredGridFilter
00054 {
00055 public:
00056   static vtkBlankStructuredGridWithImage *New();
00057   vtkTypeRevisionMacro(vtkBlankStructuredGridWithImage,vtkStructuredGridToStructuredGridFilter);
00058   void PrintSelf(ostream& os, vtkIndent indent);
00059 
00061 
00062   void SetBlankingInput(vtkImageData *input);
00063   vtkImageData *GetBlankingInput();
00065 
00066 protected:
00067   vtkBlankStructuredGridWithImage();
00068   ~vtkBlankStructuredGridWithImage();
00069 
00070   void Execute();
00071 private:
00072   vtkBlankStructuredGridWithImage(const vtkBlankStructuredGridWithImage&);  // Not implemented.
00073   void operator=(const vtkBlankStructuredGridWithImage&);  // Not implemented.
00074 };
00075 
00076 #endif
00077 
00078