
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
81 lines
2.2 KiB
C++
81 lines
2.2 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 <map>
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
#include "cmProperty.h"
|
|
|
|
/** \class cmPropertyDefinition
|
|
* \brief Property meta-information
|
|
*
|
|
* This class contains the following meta-information about property:
|
|
* - Various documentation strings;
|
|
* - If the property is chained.
|
|
*/
|
|
class cmPropertyDefinition
|
|
{
|
|
public:
|
|
/// Constructor
|
|
cmPropertyDefinition(std::string shortDescription,
|
|
std::string fullDescription, bool chained,
|
|
std::string initializeFromVariable);
|
|
|
|
/// Is the property chained?
|
|
bool IsChained() const { return this->Chained; }
|
|
|
|
/// Get the documentation (short version)
|
|
std::string const& GetShortDescription() const
|
|
{
|
|
return this->ShortDescription;
|
|
}
|
|
|
|
/// Get the documentation (full version)
|
|
std::string const& GetFullDescription() const
|
|
{
|
|
return this->FullDescription;
|
|
}
|
|
|
|
/// Get the variable the property is initialized from
|
|
std::string const& GetInitializeFromVariable() const
|
|
{
|
|
return this->InitializeFromVariable;
|
|
}
|
|
|
|
private:
|
|
std::string ShortDescription;
|
|
std::string FullDescription;
|
|
bool Chained;
|
|
std::string InitializeFromVariable;
|
|
};
|
|
|
|
/** \class cmPropertyDefinitionMap
|
|
* \brief Map property name and scope to their definition
|
|
*/
|
|
class cmPropertyDefinitionMap
|
|
{
|
|
public:
|
|
// define the property
|
|
void DefineProperty(std::string const& name, cmProperty::ScopeType scope,
|
|
std::string const& ShortDescription,
|
|
std::string const& FullDescription, bool chain,
|
|
std::string const& initializeFromVariable);
|
|
|
|
// get the property definition if present, otherwise nullptr
|
|
cmPropertyDefinition const* GetPropertyDefinition(
|
|
std::string const& name, cmProperty::ScopeType scope) const;
|
|
|
|
using KeyType = std::pair<std::string, cmProperty::ScopeType>;
|
|
std::map<KeyType, cmPropertyDefinition> const& GetMap() const
|
|
{
|
|
return this->Map_;
|
|
}
|
|
|
|
private:
|
|
std::map<KeyType, cmPropertyDefinition> Map_;
|
|
};
|