VTK
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 =========================================================================*/
24 #ifndef vtkMemoryLimitImageDataStreamer_h
25 #define vtkMemoryLimitImageDataStreamer_h
26 
27 #include "vtkFiltersParallelImagingModule.h" // For export macro
28 #include "vtkImageDataStreamer.h"
29 
30 
31 class VTKFILTERSPARALLELIMAGING_EXPORT vtkMemoryLimitImageDataStreamer : public vtkImageDataStreamer
32 {
33 public:
36  void PrintSelf(ostream& os, vtkIndent indent) override;
37 
39 
42  vtkSetMacro(MemoryLimit, unsigned long);
43  vtkGetMacro(MemoryLimit, unsigned long);
45 
46  // See the vtkAlgorithm for a description of what these do
49  vtkInformationVector*) override;
50 
51 protected:
54 
55  unsigned long MemoryLimit;
56 private:
58  void operator=(const vtkMemoryLimitImageDataStreamer&) = delete;
59 };
60 
61 
62 
63 
64 #endif
Initiates streaming on image data.
Store vtkAlgorithm input/output information.
Initiates streaming on image data.
static vtkImageDataStreamer * New()
a simple class to control print indentation
Definition: vtkIndent.h:33
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.
int ProcessRequest(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Process a request from the executive.