VTK
vtkExtractSelectedBlock.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkExtractSelectedBlock.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 =========================================================================*/
19 #ifndef __vtkExtractSelectedBlock_h
20 #define __vtkExtractSelectedBlock_h
21 
23 
25 {
26 public:
27  static vtkExtractSelectedBlock* New();
29  void PrintSelf(ostream& os, vtkIndent indent);
30 
31 //BTX
32 protected:
35 
36  // Generate the output.
37  virtual int RequestData(vtkInformation *,
39 
41 
42  virtual int RequestDataObject(vtkInformation* request,
43  vtkInformationVector** inputVector,
44  vtkInformationVector* outputVector);
46 
48 private:
49  vtkExtractSelectedBlock(const vtkExtractSelectedBlock&); // Not implemented.
50  void operator=(const vtkExtractSelectedBlock&); // Not implemented.
51 //ETX
52 };
53 
54 #endif
55 
56