VTK
vtkXMLPStructuredGridWriter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkXMLPStructuredGridWriter.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 =========================================================================*/
29 #ifndef __vtkXMLPStructuredGridWriter_h
30 #define __vtkXMLPStructuredGridWriter_h
31 
32 #include "vtkIOXMLModule.h" // For export macro
34 
35 class vtkStructuredGrid;
36 
38 {
39 public:
42  void PrintSelf(ostream& os, vtkIndent indent);
43 
44  //BTX
46 
48  //ETX
50 
51 protected:
54 
55  // see algorithm for more info
57 
58  const char* GetDataSetName();
59  const char* GetDefaultFileExtension();
61  void WritePData(vtkIndent indent);
62 
63 private:
64  vtkXMLPStructuredGridWriter(const vtkXMLPStructuredGridWriter&); // Not implemented.
65  void operator=(const vtkXMLPStructuredGridWriter&); // Not implemented.
66 };
67 
68 #endif