VTK  9.3.20240423
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
19VTK_ABI_NAMESPACE_BEGIN
20class VTKCOMMONCORE_EXPORT vtkInformationKeyVectorKey : public vtkInformationKey
21{
22public:
24 void PrintSelf(ostream& os, vtkIndent indent) override;
25
26 vtkInformationKeyVectorKey(const char* name, const char* location);
28
34 static VTK_NEWINSTANCE vtkInformationKeyVectorKey* MakeKey(const char* name, const char* location)
35 {
36 return new vtkInformationKeyVectorKey(name, location);
37 }
38
40
46 void Set(vtkInformation* info, vtkInformationKey* const* value, int length);
50 void Get(vtkInformation* info, vtkInformationKey** value);
53
59 void ShallowCopy(vtkInformation* from, vtkInformation* to) override;
60
64 void Print(ostream& os, vtkInformation* info) override;
65
66private:
68 void operator=(const vtkInformationKeyVectorKey&) = delete;
69};
70
71VTK_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.
static vtkInformationKeyVectorKey * MakeKey(const char *name, const char *location)
This method simply returns a new vtkInformationKeyVectorKey, given a name and a location.
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)
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.
void Get(vtkInformation *info, vtkInformationKey **value)
Get/Set the value associated with this key in the given information object.
vtkInformationKey * Get(vtkInformation *info, int idx)
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.
#define VTK_NEWINSTANCE