vtkPVStreamingPiecesInformation.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
2 // SPDX-License-Identifier: BSD-3-Clause
14 #ifndef vtkPVStreamingPiecesInformation_h
15 #define vtkPVStreamingPiecesInformation_h
16 
17 #include "vtkPVInformation.h"
18 #include "vtkRemotingViewsModule.h" //needed for exports
19 
20 #include <vector> // needed for internal API
21 
23 {
24 public:
27  void PrintSelf(ostream& os, vtkIndent indent) override;
28 
32  void CopyFromObject(vtkObject*) override;
33 
37  void AddInformation(vtkPVInformation* info) override;
38 
40 
43  void CopyToStream(vtkClientServerStream*) override;
44  void CopyFromStream(const vtkClientServerStream*) override;
46 
50  void GetKeys(std::vector<unsigned int>& keys) const;
51 
52 protected:
55 
56 private:
58  void operator=(const vtkPVStreamingPiecesInformation&) = delete;
59 
60  class vtkInternals;
61  vtkInternals* Internals;
62 };
63 
64 #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.
#define VTKREMOTINGVIEWS_EXPORT
void PrintSelf(ostream &os, vtkIndent indent) override
Store messages for the interpreter.
void operator=(const vtkPVInformation &)=delete
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.
static vtkObject * New()
Superclass for information objects.