VTK
vtkExtractLevel.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkExtractLevel.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 =========================================================================*/
26 #ifndef __vtkExtractLevel_h
27 #define __vtkExtractLevel_h
28 
30 
32 {
33 public:
34  static vtkExtractLevel* New();
36  void PrintSelf(ostream& os, vtkIndent indent);
37 
38 
40 
42  void AddLevel(unsigned int level);
43  void RemoveLevel(unsigned int level);
44  void RemoveAllLevels();
46 
47 //BTX
48 protected:
50  ~vtkExtractLevel();
51 
53  virtual int RequestData(vtkInformation *,
56 
57 private:
58  vtkExtractLevel(const vtkExtractLevel&); // Not implemented.
59  void operator=(const vtkExtractLevel&); // Not implemented.
60 
61  class vtkSet;
62  vtkSet* Levels;
63 //ETX
64 };
65 
66 #endif
67 
68