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 =========================================================================*/
29 #ifndef vtkImageCacheFilter_h
30 #define vtkImageCacheFilter_h
31 
32 #include "vtkImagingCoreModule.h" // For export macro
33 #include "vtkImageAlgorithm.h"
34 
35 class vtkExecutive;
36 
37 class VTKIMAGINGCORE_EXPORT vtkImageCacheFilter : public vtkImageAlgorithm
38 {
39 public:
40  static vtkImageCacheFilter *New();
42  void PrintSelf(ostream& os, vtkIndent indent);
43 
45 
49  void SetCacheSize(int size);
50  int GetCacheSize();
52 
53 protected:
56 
57  // Create a default executive.
58  virtual vtkExecutive* CreateDefaultExecutive() VTK_OVERRIDE;
59  virtual void ExecuteData(vtkDataObject *) VTK_OVERRIDE;
60 
61 private:
62  vtkImageCacheFilter(const vtkImageCacheFilter&) VTK_DELETE_FUNCTION;
63  void operator=(const vtkImageCacheFilter&) VTK_DELETE_FUNCTION;
64 };
65 
66 
67 
68 #endif
69 
70 
71 
virtual vtkExecutive * CreateDefaultExecutive()
Create a default executive.
Superclass for all pipeline executives in VTK.
Definition: vtkExecutive.h:49
a simple class to control print indentation
Definition: vtkIndent.h:39
Caches multiple vtkImageData objects.
Generic algorithm superclass for image algs.
static vtkAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
general representation of visualization data
Definition: vtkDataObject.h:64