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 "vtkPVInformation.h"
30 #include "vtkRemotingViewsModule.h" //needed for exports
31 
32 #include <vector> // needed for internal API
33 
35 {
36 public:
39  void PrintSelf(ostream& os, vtkIndent indent) override;
40 
44  void CopyFromObject(vtkObject*) override;
45 
49  void AddInformation(vtkPVInformation* info) override;
50 
52 
55  void CopyToStream(vtkClientServerStream*) override;
56  void CopyFromStream(const vtkClientServerStream*) override;
58 
62  void GetKeys(std::vector<unsigned int>& keys) const;
63 
64 protected:
67 
68 private:
70  void operator=(const vtkPVStreamingPiecesInformation&) = delete;
71 
72  class vtkInternals;
73  vtkInternals* Internals;
74 };
75 
76 #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.