VTK  9.3.20240425
vtkMemoryLimitImageDataStreamer.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
15#ifndef vtkMemoryLimitImageDataStreamer_h
16#define vtkMemoryLimitImageDataStreamer_h
17
18#include "vtkFiltersParallelImagingModule.h" // For export macro
20
21VTK_ABI_NAMESPACE_BEGIN
22class VTKFILTERSPARALLELIMAGING_EXPORT vtkMemoryLimitImageDataStreamer : public vtkImageDataStreamer
23{
24public:
27 void PrintSelf(ostream& os, vtkIndent indent) override;
28
30
33 vtkSetMacro(MemoryLimit, unsigned long);
34 vtkGetMacro(MemoryLimit, unsigned long);
36
37 // See the vtkAlgorithm for a description of what these do
40
41protected:
44
45 unsigned long MemoryLimit;
46
47private:
49 void operator=(const vtkMemoryLimitImageDataStreamer&) = delete;
50};
51
52VTK_ABI_NAMESPACE_END
53#endif
Initiates streaming on image data.
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Initiates streaming on image data.
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:64