ParaView
vtkPVStreamingPiecesInformation.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: $RCSfile$
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 =========================================================================*/
26 #ifndef vtkPVStreamingPiecesInformation_h
27 #define vtkPVStreamingPiecesInformation_h
28 
29 #include "vtkPVClientServerCoreRenderingModule.h" // needed for export macro
30 #include "vtkPVInformation.h"
31 
32 #include <vector> // needed for internal API
33 
34 class VTKPVCLIENTSERVERCORERENDERING_EXPORT vtkPVStreamingPiecesInformation
35  : public vtkPVInformation
36 {
37 public:
38  static vtkPVStreamingPiecesInformation* New();
40  void PrintSelf(ostream& os, vtkIndent indent);
41 
45  virtual void CopyFromObject(vtkObject*);
46 
50  virtual void AddInformation(vtkPVInformation* info);
51 
53 
56  virtual void CopyToStream(vtkClientServerStream*);
57  virtual void CopyFromStream(const vtkClientServerStream*);
59 
63  void GetKeys(std::vector<unsigned int>& keys) const;
64 
65 protected:
68 
69 private:
71  void operator=(const vtkPVStreamingPiecesInformation&) VTK_DELETE_FUNCTION;
72 
73  class vtkInternals;
74  vtkInternals* Internals;
75 };
76 
77 #endif
information object used by vtkSMDataDeliveryManager to get information about representations that hav...
virtual void CopyFromStream(const vtkClientServerStream *)
Manage a serialized version of the information.
Store messages for the interpreter.
void PrintSelf(ostream &os, vtkIndent indent)
virtual void AddInformation(vtkPVInformation *)
Merge another information object.
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.