VTK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
vtkBlankStructuredGridWithImage.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkBlankStructuredGridWithImage.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 =========================================================================*/
34 #ifndef __vtkBlankStructuredGridWithImage_h
35 #define __vtkBlankStructuredGridWithImage_h
36 
37 #include "vtkFiltersGeneralModule.h" // For export macro
38 #include "vtkStructuredGridAlgorithm.h"
39 
40 class vtkImageData;
41 
42 class VTKFILTERSGENERAL_EXPORT vtkBlankStructuredGridWithImage : public vtkStructuredGridAlgorithm
43 {
44 public:
45  static vtkBlankStructuredGridWithImage *New();
46  vtkTypeMacro(vtkBlankStructuredGridWithImage,vtkStructuredGridAlgorithm);
47  void PrintSelf(ostream& os, vtkIndent indent);
48 
50 
51  void SetBlankingInputData(vtkImageData *input);
52  vtkImageData *GetBlankingInput();
54 
55 protected:
58 
59  virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
60  virtual int FillInputPortInformation(int port, vtkInformation *info);
61 
62 private:
64  void operator=(const vtkBlankStructuredGridWithImage&); // Not implemented.
65 };
66 
67 #endif
blank a structured grid with an image