VTK
vtkXMLMultiGroupDataReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkXMLMultiGroupDataReader.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 =========================================================================*/
22 #ifndef __vtkXMLMultiGroupDataReader_h
23 #define __vtkXMLMultiGroupDataReader_h
24 
26 
28 {
29 public:
32  void PrintSelf(ostream& os, vtkIndent indent);
33 
34 protected:
37 
38  // Get the name of the data set being read.
39  virtual const char* GetDataSetName()
40  {
41  return "vtkMultiGroupDataSet";
42  }
43 
44 private:
45  vtkXMLMultiGroupDataReader(const vtkXMLMultiGroupDataReader&); // Not implemented.
46  void operator=(const vtkXMLMultiGroupDataReader&); // Not implemented.
47 };
48 
49 #endif