vtkPVCatalystChannelInformation.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
2 // SPDX-License-Identifier: BSD-3-Clause
10 #ifndef vtkPVCatalystChannelInformation_h
11 #define vtkPVCatalystChannelInformation_h
12 
13 #include "vtkPVInformation.h"
14 #include "vtkRemotingServerManagerModule.h" //needed for exports
15 #include <string> // for ChannelName member variable
16 
17 class VTKREMOTINGSERVERMANAGER_EXPORT vtkPVCatalystChannelInformation : public vtkPVInformation
18 {
19 public:
22  void PrintSelf(ostream& os, vtkIndent indent) override;
23 
27  vtkGetMacro(ChannelName, std::string);
28 
32  void CopyFromObject(vtkObject*) override;
33 
38  void AddInformation(vtkPVInformation* other) override;
39 
41 
44  void CopyToStream(vtkClientServerStream*) override;
45  void CopyFromStream(const vtkClientServerStream*) override;
47 
51  void Initialize();
52 
53 protected:
56 
59  std::string ChannelName;
61 
63  void operator=(const vtkPVCatalystChannelInformation&) = delete;
64 };
65 
66 #endif
vtkPVInformation::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
vtkObject::New
static vtkObject * New()
vtkClientServerStream
Store messages for the interpreter.
Definition: vtkClientServerStream.h:23
vtkPVInformation.h
vtkObject
vtkPVInformation::operator=
void operator=(const vtkPVInformation &)=delete
vtkPVInformation::AddInformation
virtual void AddInformation(vtkPVInformation *)
Merge another information object.
vtkPVCatalystChannelInformation::ChannelName
std::string ChannelName
Information results.
Definition: vtkPVCatalystChannelInformation.h:59
vtkIndent
vtkPVInformation::CopyFromObject
virtual void CopyFromObject(vtkObject *)
Transfer information about a single object into this object.
vtkPVCatalystChannelInformation
Find out the Catalyst input channel name for a dataset.
Definition: vtkPVCatalystChannelInformation.h:17
vtkPVInformation
Superclass for information objects.
Definition: vtkPVInformation.h:19
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.