VTK
vtkImageCacheFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageCacheFilter.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 =========================================================================*/
28 #ifndef __vtkImageCacheFilter_h
29 #define __vtkImageCacheFilter_h
30 
31 #include "vtkImageAlgorithm.h"
32 
33 class vtkExecutive;
34 
36 {
37 public:
38  static vtkImageCacheFilter *New();
40  void PrintSelf(ostream& os, vtkIndent indent);
41 
43 
45  void SetCacheSize(int size);
46  int GetCacheSize();
48 
49 protected:
52 
53  // Create a default executive.
55  virtual void ExecuteData(vtkDataObject *);
56 
57 private:
58  vtkImageCacheFilter(const vtkImageCacheFilter&); // Not implemented.
59  void operator=(const vtkImageCacheFilter&); // Not implemented.
60 };
61 
62 
63 
64 #endif
65 
66 
67