Go to the documentation of this file.
35 #include <Ice/LocalObject.h>
77 template <
typename PropertyType>
140 operator PropertyType()
146 template <
class T = PropertyType>
147 std::enable_if_t<std::is_same_v<T, std::string>,
T>
154 template <
class T = PropertyType>
155 std::enable_if_t<std::is_same_v<T, std::vector<std::string>>,
T>
159 for (
auto& val : vals)
179 PropertyDefinition<PropertyType> definition;
192 template <
typename PropertyType>
196 definition(definition), prefix(prefix), properties(properties)
201 template <
typename PropertyType>
206 return definition.getValue(prefix, properties);
209 template <
typename PropertyType>
214 return definition.isRequired();
217 template <
typename PropertyType>
222 return definition.isConstant();
225 template <
typename PropertyType>
230 return definition.isSet(prefix, properties);
PropertyDefinition< PropertyType >::PropertyValuesMap PropertyValuesMap
Property value map type definition.
PropertyType getValue()
Returns the property value set in a config file or passed as a command-line option.
std::map< std::string, ValueEntry > PropertyValuesMap
std::enable_if_t< std::is_same_v< T, std::string >, T > getValueAndReplaceAllVars()
std::shared_ptr< Value > value()
bool isSet() const
Checks whether the property is set.
Provides access to Ice properties with extended capabilities.
Property(PropertyDefinition< PropertyType > definition, std::string prefix, Ice::PropertiesPtr properties)
Property constructor.
std::enable_if_t< std::is_same_v< T, std::vector< std::string > >, T > getValueAndReplaceAllVars()
bool isConstant() const
Checks if this property is constant or if it can be changed at runtime.
std::string FileSystemPathBuilder_ApplyFormattingAndResolveEnvAndCMakeVars(std::string const &value)
bool isRequired() const
Checks if this property is required.
PropertyDefinition defines a property that will be available within the PropertyUser.
This file offers overloads of toIce() and fromIce() functions for STL container types.