VTK  9.3.20231128
vtkInformationKeyVectorKey.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
11 #ifndef vtkInformationKeyVectorKey_h
12 #define vtkInformationKeyVectorKey_h
13 
14 #include "vtkCommonCoreModule.h" // For export macro
15 #include "vtkInformationKey.h"
16 
17 #include "vtkCommonInformationKeyManager.h" // Manage instances of this type.
18 
19 VTK_ABI_NAMESPACE_BEGIN
20 class VTKCOMMONCORE_EXPORT vtkInformationKeyVectorKey : public vtkInformationKey
21 {
22 public:
24  void PrintSelf(ostream& os, vtkIndent indent) override;
25 
26  vtkInformationKeyVectorKey(const char* name, const char* location);
28 
35  {
37  }
38 
40 
53 
59  void ShallowCopy(vtkInformation* from, vtkInformation* to) override;
60 
64  void Print(ostream& os, vtkInformation* info) override;
65 
66 private:
68  void operator=(const vtkInformationKeyVectorKey&) = delete;
69 };
70 
71 VTK_ABI_NAMESPACE_END
72 #endif
a simple class to control print indentation
Definition: vtkIndent.h:108
Key for vector-of-keys values.
void Print(ostream &os, vtkInformation *info) override
Print the key's value in an information object to a stream.
void RemoveItem(vtkInformation *info, vtkInformationKey *value)
Get/Set the value associated with this key in the given information object.
vtkInformationKey ** Get(vtkInformation *info)
Get/Set the value associated with this key in the given information object.
void Set(vtkInformation *info, vtkInformationKey *const *value, int length)
Get/Set the value associated with this key in the given information object.
void ShallowCopy(vtkInformation *from, vtkInformation *to) override
Copy the entry associated with this key from one information object to another.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkInformationKeyVectorKey() override
vtkInformationKeyVectorKey(const char *name, const char *location)
vtkInformationKey * Get(vtkInformation *info, int idx)
Get/Set the value associated with this key in the given information object.
void AppendUnique(vtkInformation *info, vtkInformationKey *value)
Get/Set the value associated with this key in the given information object.
int Length(vtkInformation *info)
Get/Set the value associated with this key in the given information object.
static vtkInformationKeyVectorKey * MakeKey(const char *name, const char *location)
This method simply returns a new vtkInformationKeyVectorKey, given a name and a location.
void Get(vtkInformation *info, vtkInformationKey **value)
Get/Set the value associated with this key in the given information object.
void Append(vtkInformation *info, vtkInformationKey *value)
Get/Set the value associated with this key in the given information object.
Superclass for vtkInformation keys.
Store vtkAlgorithm input/output information.
@ location
Definition: vtkX3D.h:406
@ info
Definition: vtkX3D.h:376
@ length
Definition: vtkX3D.h:393
@ value
Definition: vtkX3D.h:220
@ name
Definition: vtkX3D.h:219
#define VTK_NEWINSTANCE