VTK  9.2.6
vtkMemoryLimitImageDataStreamer.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkMemoryLimitImageDataStreamer.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
27#ifndef vtkMemoryLimitImageDataStreamer_h
28#define vtkMemoryLimitImageDataStreamer_h
29
30#include "vtkFiltersParallelImagingModule.h" // For export macro
32
33class VTKFILTERSPARALLELIMAGING_EXPORT vtkMemoryLimitImageDataStreamer : public vtkImageDataStreamer
34{
35public:
38 void PrintSelf(ostream& os, vtkIndent indent) override;
39
41
44 vtkSetMacro(MemoryLimit, unsigned long);
45 vtkGetMacro(MemoryLimit, unsigned long);
47
48 // See the vtkAlgorithm for a description of what these do
51
52protected:
55
56 unsigned long MemoryLimit;
57
58private:
60 void operator=(const vtkMemoryLimitImageDataStreamer&) = delete;
61};
62
63#endif
a simple class to control print indentation
Definition vtkIndent.h:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
static vtkMemoryLimitImageDataStreamer * New()
~vtkMemoryLimitImageDataStreamer() override=default
vtkTypeBool ProcessRequest(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Process a request from the executive.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int vtkTypeBool
Definition vtkABI.h:69