Functions | |
template<typename T > | |
bool | ns3::CommandLineHelper::UserItemParse (const std::string value, T &val) |
Helpers to specialize CommandLine::UserItem::Parse() More... | |
template<typename T > | |
std::string | ns3::CommandLineHelper::GetDefault (const T &val) |
Helper to specialize CommandLine::UserItem::GetDefault() on types needing special handling. More... | |
template<> | |
std::string | ns3::CommandLineHelper::GetDefault< bool > (const bool &val) |
Helper to specialize CommandLine::UserItem::GetDefault() on types needing special handling. More... | |
template<> | |
std::string | ns3::CommandLineHelper::GetDefault< Time > (const Time &val) |
Helper to specialize CommandLine::UserItem::GetDefault() on types needing special handling. More... | |
std::string ns3::CommandLineHelper::GetDefault | ( | const T & | val | ) |
Helper to specialize CommandLine::UserItem::GetDefault() on types needing special handling.
[in] | val | The argument value |
Definition at line 721 of file command-line.h.
std::string ns3::CommandLineHelper::GetDefault< bool > | ( | const bool & | val | ) |
Helper to specialize CommandLine::UserItem::GetDefault() on types needing special handling.
[in] | val | The argument value |
Definition at line 865 of file command-line.cc.
std::string ns3::CommandLineHelper::GetDefault< Time > | ( | const Time & | val | ) |
Helper to specialize CommandLine::UserItem::GetDefault() on types needing special handling.
[in] | val | The argument value |
Definition at line 905 of file command-line.cc.
References ns3::Time::As().
bool ns3::CommandLineHelper::UserItemParse | ( | const std::string | value, |
T & | val | ||
) |
Helpers to specialize CommandLine::UserItem::Parse()
[in] | value | The argument name |
[out] | val | The argument location |
T | [deduced] The type being specialized |
true
if parsing was successful Definition at line 737 of file command-line.h.