VTK  9.2.6
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 "vtkImageAlgorithm.h"
33#include "vtkImagingCoreModule.h" // For export macro
34
35class vtkExecutive;
36
37class VTKIMAGINGCORE_EXPORT vtkImageCacheFilter : public vtkImageAlgorithm
38{
39public:
42 void PrintSelf(ostream& os, vtkIndent indent) override;
43
45
49 void SetCacheSize(int size);
52
53protected:
56
57 // Create a default executive.
59 void ExecuteData(vtkDataObject*) override;
60
61private:
63 void operator=(const vtkImageCacheFilter&) = delete;
64};
65
66#endif
general representation of visualization data
Superclass for all pipeline executives in VTK.
Generic algorithm superclass for image algs.
Caches multiple vtkImageData objects.
static vtkImageCacheFilter * New()
vtkExecutive * CreateDefaultExecutive() override
Create a default executive.
void SetCacheSize(int size)
This is the maximum number of images that can be retained in memory.
~vtkImageCacheFilter() override
void ExecuteData(vtkDataObject *) override
This method is the old style execute method, provided for the sake of backwards compatibility with ol...
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int GetCacheSize()
This is the maximum number of images that can be retained in memory.
a simple class to control print indentation
Definition vtkIndent.h:40