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 =========================================================================*/
27 #ifndef vtkMemoryLimitImageDataStreamer_h
28 #define vtkMemoryLimitImageDataStreamer_h
29 
30 #include "vtkFiltersParallelImagingModule.h" // For export macro
31 #include "vtkImageDataStreamer.h"
32 
33 class VTKFILTERSPARALLELIMAGING_EXPORT vtkMemoryLimitImageDataStreamer : public vtkImageDataStreamer
34 {
35 public:
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 
52 protected:
54  ~vtkMemoryLimitImageDataStreamer() override = default;
55 
56  unsigned long MemoryLimit;
57 
58 private:
60  void operator=(const vtkMemoryLimitImageDataStreamer&) = delete;
61 };
62 
63 #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:69
static vtkImageDataStreamer * New()
a simple class to control print indentation
Definition: vtkIndent.h:39
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.