VTK
vtkInformationExecutivePortKey.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkInformationExecutivePortKey.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm 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 =========================================================================*/
23 #ifndef vtkInformationExecutivePortKey_h
24 #define vtkInformationExecutivePortKey_h
25 
26 #include "vtkCommonExecutionModelModule.h" // For export macro
27 #include "vtkInformationKey.h"
28 
29 #include "vtkFilteringInformationKeyManager.h" // Manage instances of this type.
30 
31 class vtkExecutive;
32 
34 {
35 public:
37  void PrintSelf(ostream& os, vtkIndent indent);
38 
39  vtkInformationExecutivePortKey(const char* name, const char* location);
41 
43 
46  static vtkInformationExecutivePortKey* MakeKey(const char* name, const char* location)
47  {
48  return new vtkInformationExecutivePortKey(name, location);
49  }
51 
53 
55  void Set(vtkInformation* info, vtkExecutive*, int);
56  vtkExecutive* GetExecutive(vtkInformation* info);
57  int GetPort(vtkInformation* info);
58  void Get(vtkInformation *info, vtkExecutive*& executive, int &port);
60 
64  virtual void ShallowCopy(vtkInformation* from, vtkInformation* to);
65 
67  virtual void Report(vtkInformation* info, vtkGarbageCollector* collector);
68 
70  virtual void Print(ostream& os, vtkInformation* info);
71 
72 private:
74  void operator=(const vtkInformationExecutivePortKey&); // Not implemented.
75 };
76 
77 #endif
#define VTKCOMMONEXECUTIONMODEL_EXPORT
virtual void Report(vtkInformation *info, vtkGarbageCollector *collector)
virtual void ShallowCopy(vtkInformation *from, vtkInformation *to)=0
Store vtkAlgorithm input/output information.
static vtkInformationExecutivePortKey * MakeKey(const char *name, const char *location)
Superclass for all pipeline executives in VTK.
Definition: vtkExecutive.h:51
void PrintSelf(ostream &os, vtkIndent indent)
Detect and break reference loops.
void Print(vtkInformation *info)
Superclass for vtkInformation keys.
a simple class to control print indentation
Definition: vtkIndent.h:38
Key for vtkExecutive/Port value pairs.