vtkPVCatalystChannelInformation.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkPVCatalystChannelInformation.h
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 =========================================================================*/
22 #ifndef vtkPVCatalystChannelInformation_h
23 #define vtkPVCatalystChannelInformation_h
24 
25 #include "vtkPVInformation.h"
26 #include "vtkRemotingServerManagerModule.h" //needed for exports
27 #include <string> // for ChannelName member variable
28 
30 {
31 public:
34  void PrintSelf(ostream& os, vtkIndent indent) override;
35 
39  vtkGetMacro(ChannelName, std::string);
40 
44  void CopyFromObject(vtkObject*) override;
45 
50  void AddInformation(vtkPVInformation* other) override;
51 
53 
56  void CopyToStream(vtkClientServerStream*) override;
57  void CopyFromStream(const vtkClientServerStream*) override;
59 
63  void Initialize();
64 
65 protected:
68 
70 
71  std::string ChannelName;
73 
75  void operator=(const vtkPVCatalystChannelInformation&) = delete;
76 };
77 
78 #endif
virtual void CopyFromStream(const vtkClientServerStream *)
Manage a serialized version of the information.
#define VTKREMOTINGSERVERMANAGER_EXPORT
void PrintSelf(ostream &os, vtkIndent indent) override
std::string ChannelName
Information results.
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.
Find out the Catalyst input channel name for a dataset.
virtual void CopyFromObject(vtkObject *)
Transfer information about a single object into this object.
static vtkObject * New()
Superclass for information objects.