VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
IO
Parallel
vtkPImageWriter.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkPImageWriter.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
=========================================================================*/
28
#ifndef __vtkPImageWriter_h
29
#define __vtkPImageWriter_h
30
31
#include "vtkIOParallelModule.h"
// For export macro
32
#include "
vtkImageWriter.h
"
33
class
vtkPipelineSize
;
34
35
class
VTKIOPARALLEL_EXPORT
vtkPImageWriter
:
public
vtkImageWriter
36
{
37
public
:
38
static
vtkPImageWriter
*
New
();
39
vtkTypeMacro(
vtkPImageWriter
,
vtkImageWriter
);
40
void
PrintSelf
(ostream& os,
vtkIndent
indent);
41
43
45
vtkSetMacro(MemoryLimit,
unsigned
long
);
46
vtkGetMacro(MemoryLimit,
unsigned
long
);
48
49
protected
:
50
vtkPImageWriter
();
51
~
vtkPImageWriter
();
52
53
unsigned
long
MemoryLimit
;
54
55
virtual
void
RecursiveWrite
(
int
dim,
vtkImageData
*region,
vtkInformation
* inInfo, ofstream *file);
56
virtual
void
RecursiveWrite
(
int
dim,
vtkImageData
*cache,
57
vtkImageData
*
data
,
vtkInformation
* inInfo, ofstream *file)
58
{this->
vtkImageWriter::RecursiveWrite
(dim,cache,data,inInfo,file);};
59
60
vtkPipelineSize
*SizeEstimator;
61
private
:
62
vtkPImageWriter
(
const
vtkPImageWriter
&);
// Not implemented.
63
void
operator=(
const
vtkPImageWriter
&);
// Not implemented.
64
};
65
66
#endif
67
68
Generated on Thu May 24 2012 22:22:32 for VTK by
1.8.1