VTK  9.3.1
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
19 #include "vtkImageDataStreamer.h"
20 
21 VTK_ABI_NAMESPACE_BEGIN
22 class VTKFILTERSPARALLELIMAGING_EXPORT vtkMemoryLimitImageDataStreamer : public vtkImageDataStreamer
23 {
24 public:
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 
41 protected:
43  ~vtkMemoryLimitImageDataStreamer() override = default;
44 
45  unsigned long MemoryLimit;
46 
47 private:
49  void operator=(const vtkMemoryLimitImageDataStreamer&) = delete;
50 };
51 
52 VTK_ABI_NAMESPACE_END
53 #endif
Initiates streaming on image data.
vtkTypeBool ProcessRequest(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Process a request from the executive.
Store vtkAlgorithm input/output information.
Initiates streaming on image data.
int vtkTypeBool
Definition: vtkABI.h:64
static vtkImageDataStreamer * New()
a simple class to control print indentation
Definition: vtkIndent.h:28
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Store zero or more vtkInformation instances.