ParaView
vtkPVSILInformation.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkPVSILInformation.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 vtkPVSILInformation_h
23 #define vtkPVSILInformation_h
24 
25 #include "vtkPVClientServerCoreCoreModule.h" //needed for exports
26 #include "vtkPVInformation.h"
27 
28 class vtkGraph;
29 
30 class VTKPVCLIENTSERVERCORECORE_EXPORT vtkPVSILInformation : public vtkPVInformation
31 {
32 public:
33  static vtkPVSILInformation* New();
35  void PrintSelf(ostream& os, vtkIndent indent);
36 
40  virtual void CopyFromObject(vtkObject*);
41 
43 
46  virtual void CopyToStream(vtkClientServerStream*);
47  virtual void CopyFromStream(const vtkClientServerStream*);
49 
51 
54  vtkGetObjectMacro(SIL, vtkGraph);
56 
57 protected:
60 
61  void SetSIL(vtkGraph*);
62  vtkGraph* SIL;
63 
64 private:
65  vtkPVSILInformation(const vtkPVSILInformation&) VTK_DELETE_FUNCTION;
66  void operator=(const vtkPVSILInformation&) VTK_DELETE_FUNCTION;
67 };
68 
69 #endif
virtual void CopyFromStream(const vtkClientServerStream *)
Manage a serialized version of the information.
Store messages for the interpreter.
Information object used to retreived the SIL graph from a file reader or any compatible source...
void operator=(const vtkPVInformation &) VTK_DELETE_FUNCTION
void PrintSelf(ostream &os, vtkIndent indent)
virtual void CopyToStream(vtkClientServerStream *)=0
Manage a serialized version of the information.
virtual void CopyFromObject(vtkObject *)
Transfer information about a single object into this object.
Superclass for information objects.