Helper to test if an array entry matches a config path specification. More...
Public Member Functions | |
ArrayMatcher (std::string element) | |
Construct from a Config path specification. More... | |
bool | Matches (std::size_t i) const |
Test if a specific index matches the Config Path. More... | |
Private Member Functions | |
bool | StringToUint32 (std::string str, uint32_t *value) const |
Convert a string to an uint32_t . More... | |
Private Attributes | |
std::string | m_element |
The Config path element. More... | |
Helper to test if an array entry matches a config path specification.
ns3::Config::ArrayMatcher::ArrayMatcher | ( | std::string | element | ) |
bool ns3::Config::ArrayMatcher::Matches | ( | std::size_t | i | ) | const |
Test if a specific index matches the Config Path.
[in] | i | The index. |
true
if the index matches the Config Path. Definition at line 239 of file config.cc.
References ArrayMatcher(), m_element, Matches(), max, min, NS_LOG_DEBUG, NS_LOG_FUNCTION, and StringToUint32().
Referenced by ns3::Config::Resolver::DoArrayResolve(), and Matches().
|
private |
Convert a string to an uint32_t
.
[in] | str | The string. |
[in] | value | The location to store the uint32_t . |
true
if the string could be converted. Definition at line 301 of file config.cc.
References NS_LOG_FUNCTION.
Referenced by Matches().
|
private |