/*========================================================================= Program: Visualization Toolkit Module: vtkInformationStringKey.h Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ /** * @class vtkInformationStringKey * @brief Key for string values in vtkInformation. * * vtkInformationStringKey is used to represent keys for string values * in vtkInformation. */ #ifndef vtkInformationStringKey_h #define vtkInformationStringKey_h #include "vtkCommonCoreModule.h" // For export macro #include "vtkInformationKey.h" #include "vtkCommonInformationKeyManager.h" // Manage instances of this type. #include // for std::string compat class VTKCOMMONCORE_EXPORT vtkInformationStringKey : public vtkInformationKey { public: vtkTypeMacro(vtkInformationStringKey, vtkInformationKey); void PrintSelf(ostream& os, vtkIndent indent) override; vtkInformationStringKey(const char* name, const char* location); ~vtkInformationStringKey() override; /** * This method simply returns a new vtkInformationStringKey, given a * name and a location. This method is provided for wrappers. Use the * constructor directly from C++ instead. */ static vtkInformationStringKey* MakeKey(const char* name, const char* location) { return new vtkInformationStringKey(name, location); } //@{ /** * Get/Set the value associated with this key in the given * information object. */ void Set(vtkInformation* info, const char*); void Set(vtkInformation* info, const std::string& str); const char* Get(vtkInformation* info); //@} /** * Copy the entry associated with this key from one information * object to another. If there is no entry in the first information * object for this key, the value is removed from the second. */ void ShallowCopy(vtkInformation* from, vtkInformation* to) override; /** * Print the key's value in an information object to a stream. */ void Print(ostream& os, vtkInformation* info) override; private: vtkInformationStringKey(const vtkInformationStringKey&) = delete; void operator=(const vtkInformationStringKey&) = delete; }; #endif