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  {
49  }
51 
53 
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
vtkInformationExecutivePortKey::vtkInformationExecutivePortKey
vtkInformationExecutivePortKey(const char *name, const char *location)
vtkInformationExecutivePortKey::ShallowCopy
virtual void ShallowCopy(vtkInformation *from, vtkInformation *to)
VTKCOMMONEXECUTIONMODEL_EXPORT
#define VTKCOMMONEXECUTIONMODEL_EXPORT
Definition: vtkCommonExecutionModelModule.h:15
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkCommonExecutionModelModule.h
vtkFilteringInformationKeyManager.h
vtkInformationExecutivePortKey::MakeKey
static vtkInformationExecutivePortKey * MakeKey(const char *name, const char *location)
Definition: vtkInformationExecutivePortKey.h:46
vtkInformationExecutivePortKey::GetExecutive
vtkExecutive * GetExecutive(vtkInformation *info)
vtkX3D::port
@ port
Definition: vtkX3D.h:447
vtkgl::name
GLuint const GLchar * name
Definition: vtkgl.h:11983
vtkExecutive
Superclass for all pipeline executives in VTK.
Definition: vtkExecutive.h:52
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkInformationExecutivePortKey::Set
void Set(vtkInformation *info, vtkExecutive *, int)
vtkGarbageCollector
Detect and break reference loops.
Definition: vtkGarbageCollector.h:99
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkX3D::info
@ info
Definition: vtkX3D.h:376
vtkInformationExecutivePortKey::Report
virtual void Report(vtkInformation *info, vtkGarbageCollector *collector)
vtkgl::location
GLint location
Definition: vtkgl.h:12002
vtkInformationExecutivePortKey::GetPort
int GetPort(vtkInformation *info)
vtkInformationExecutivePortKey::Get
void Get(vtkInformation *info, vtkExecutive *&executive, int &port)
vtkInformationExecutivePortKey::~vtkInformationExecutivePortKey
~vtkInformationExecutivePortKey()
vtkInformationKey.h
vtkInformationKey
Superclass for vtkInformation keys.
Definition: vtkInformationKey.h:38
vtkInformationExecutivePortKey::Print
virtual void Print(ostream &os, vtkInformation *info)
vtkInformationExecutivePortKey::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkInformationExecutivePortKey
Key for vtkExecutive/Port value pairs.
Definition: vtkInformationExecutivePortKey.h:34