VTK
vtkStructuredGridWriter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkStructuredGridWriter.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 __vtkStructuredGridWriter_h
29 #define __vtkStructuredGridWriter_h
30 
31 #include "vtkDataWriter.h"
32 
33 class vtkStructuredGrid;
34 
36 {
37 public:
38  static vtkStructuredGridWriter *New();
40  void PrintSelf(ostream& os, vtkIndent indent);
41 
43 
47 
48 protected:
51 
52  void WriteData();
53  int WriteBlanking(ostream *fp, vtkStructuredGrid *ds);
54 
56 
57 private:
58  vtkStructuredGridWriter(const vtkStructuredGridWriter&); // Not implemented.
59  void operator=(const vtkStructuredGridWriter&); // Not implemented.
60 };
61 
62 #endif