1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-05-10 07:10:32 +08:00
CMake/Source/cmPropertyMap.h
Kitware Robot 0b96ae1f6a Revise C++ coding style using clang-format with "east const"
Run the `clang-format.bash` script to update all our C and C++ code to a
new style defined by `.clang-format`, now with "east const" enforcement.
Use `clang-format` version 18.

* If you reached this commit for a line in `git blame`, re-run the blame
  operation starting at the parent of this commit to see older history
  for the content.

* See the parent commit for instructions to rebase a change across this
  style transition commit.

Issue: #26123
2025-01-23 13:09:50 -05:00

55 lines
1.3 KiB
C++

/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#pragma once
#include "cmConfigure.h" // IWYU pragma: keep
#include <string>
#include <unordered_map>
#include <utility>
#include <vector>
#include "cmValue.h"
/** \class cmPropertyMap
* \brief String property map.
*/
class cmPropertyMap
{
public:
// -- General
//! Clear property list
void Clear();
// -- Properties
//! Set the property value
void SetProperty(std::string const& name, cmValue value);
void SetProperty(std::string const& name, std::string const& value)
{
this->SetProperty(name, cmValue(value));
}
//! Append to the property value
void AppendProperty(std::string const& name, std::string const& value,
bool asString = false);
//! Get the property value
cmValue GetPropertyValue(std::string const& name) const;
//! Remove the property @a name from the map
void RemoveProperty(std::string const& name);
// -- Lists
//! Get a sorted list of property keys
std::vector<std::string> GetKeys() const;
//! Get a sorted by key list of property key,value pairs
std::vector<std::pair<std::string, std::string>> GetList() const;
private:
std::unordered_map<std::string, std::string> Map_;
};