vtkPVDataAssemblyInformation.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
2 // SPDX-License-Identifier: BSD-3-Clause
12 #ifndef vtkPVDataAssemblyInformation_h
13 #define vtkPVDataAssemblyInformation_h
14 
15 #include "vtkPVInformation.h"
16 #include "vtkRemotingCoreModule.h" //needed for exports
17 
18 class vtkDataAssembly;
19 
20 class VTKREMOTINGCORE_EXPORT vtkPVDataAssemblyInformation : public vtkPVInformation
21 {
22 public:
25  void PrintSelf(ostream& os, vtkIndent indent) override;
26 
28 
31  vtkSetStringMacro(MethodName);
32  vtkGetStringMacro(MethodName);
34 
35  vtkGetObjectMacro(DataAssembly, vtkDataAssembly);
36 
38  void CopyFromObject(vtkObject*) override;
39  void CopyToStream(vtkClientServerStream*) override;
40  void CopyFromStream(const vtkClientServerStream*) override;
44 
45 protected:
47  ~vtkPVDataAssemblyInformation() override;
48 
49 private:
51  void operator=(const vtkPVDataAssemblyInformation&) = delete;
52 
53  void SetDataAssembly(vtkDataAssembly*);
54 
55  vtkDataAssembly* DataAssembly;
56  char* MethodName;
57 };
58 
59 #endif
vtkPVInformation::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
vtkObject::New
static vtkObject * New()
vtkMultiProcessStream
vtkClientServerStream
Store messages for the interpreter.
Definition: vtkClientServerStream.h:23
vtkPVInformation.h
vtkObject
vtkPVInformation::CopyParametersToStream
virtual void CopyParametersToStream(vtkMultiProcessStream &)
Serialize/Deserialize the parameters that control how/what information is gathered.
Definition: vtkPVInformation.h:50
vtkPVInformation::operator=
void operator=(const vtkPVInformation &)=delete
vtkIndent
vtkPVInformation::CopyFromObject
virtual void CopyFromObject(vtkObject *)
Transfer information about a single object into this object.
vtkPVInformation
Superclass for information objects.
Definition: vtkPVInformation.h:19
vtkPVDataAssemblyInformation
fetches vtkDataAssembly from a vtkObject subclass
Definition: vtkPVDataAssemblyInformation.h:20
vtkPVInformation::CopyToStream
virtual void CopyToStream(vtkClientServerStream *)=0
Manage a serialized version of the information.
vtkPVInformation::CopyFromStream
virtual void CopyFromStream(const vtkClientServerStream *)
Manage a serialized version of the information.
vtkPVInformation::CopyParametersFromStream
virtual void CopyParametersFromStream(vtkMultiProcessStream &)
Serialize/Deserialize the parameters that control how/what information is gathered.
Definition: vtkPVInformation.h:51