VTK
vtkXMLHierarchicalDataReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkXMLHierarchicalDataReader.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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 __vtkXMLHierarchicalDataReader_h
29 #define __vtkXMLHierarchicalDataReader_h
30 
32 
33 class vtkHierarchicalDataSet;
34 
36 {
37 public:
40  void PrintSelf(ostream& os, vtkIndent indent);
41 
42 protected:
45 
46  // Get the name of the data set being read.
47  virtual const char* GetDataSetName()
48  {
49  return "vtkHierarchicalDataSet";
50  }
51 
52 private:
54  void operator=(const vtkXMLHierarchicalDataReader&); // Not implemented.
55 };
56 
57 #endif