VTK
vtkExtractDataSets.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkExtractDataSets.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 =========================================================================*/
24 #ifndef __vtkExtractDataSets_h
25 #define __vtkExtractDataSets_h
26 
28 
30 {
31 public:
32  static vtkExtractDataSets* New();
34  void PrintSelf(ostream& os, vtkIndent indent);
35 
37  void AddDataSet(unsigned int level, unsigned int idx);
38 
40  void ClearDataSetList();
41 
42 //BTX
43 protected:
46 
47  virtual int RequestData(vtkInformation *,
50 
51 private:
52  vtkExtractDataSets(const vtkExtractDataSets&); // Not implemented.
53  void operator=(const vtkExtractDataSets&); // Not implemented.
54 
55  class vtkInternals;
56  vtkInternals* Internals;
57 //ETX
58 };
59 
60 #endif
61 
62