VTK  9.3.1
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);
27  ~vtkInformationKeyVectorKey() override;
28 
35  {
36  return new vtkInformationKeyVectorKey(name, location);
37  }
38 
40 
45  void AppendUnique(vtkInformation* info, vtkInformationKey* value);
46  void Set(vtkInformation* info, vtkInformationKey* const* value, int length);
47  void RemoveItem(vtkInformation* info, vtkInformationKey* value);
49  vtkInformationKey* Get(vtkInformation* info, int idx);
51  int Length(vtkInformation* info);
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
virtual void ShallowCopy(vtkInformation *from, vtkInformation *to)=0
Copy the entry associated with this key from one information object to another.
Store vtkAlgorithm input/output information.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void Print(vtkInformation *info)
Print the key's value in an information object to a stream.
Superclass for vtkInformation keys.
static vtkInformationKeyVectorKey * MakeKey(const char *name, const char *location)
This method simply returns a new vtkInformationKeyVectorKey, given a name and a location.
a simple class to control print indentation
Definition: vtkIndent.h:28
Key for vector-of-keys values.
#define VTK_NEWINSTANCE