Functions | |
template<typename T > | |
bool | ns3::CommandLineHelper::UserItemParse (const std::string &value, T &dest) |
Helpers to specialize CommandLine::UserItem::Parse() More... | |
template<typename T > | |
std::string | ns3::CommandLineHelper::GetDefault (const std::string &defaultValue) |
Helper to specialize CommandLine::UserItem::GetDefault() on types needing special handling. More... | |
template<> | |
std::string | ns3::CommandLineHelper::GetDefault< bool > (const std::string &defaultValue) |
Helper to specialize CommandLine::UserItem::GetDefault() on types needing special handling. More... | |
template<> | |
std::string | ns3::CommandLineHelper::GetDefault< Time > (const std::string &defaultValue) |
Helper to specialize CommandLine::UserItem::GetDefault() on types needing special handling. More... | |
std::string ns3::CommandLineHelper::GetDefault | ( | const std::string & | defaultValue | ) |
Helper to specialize CommandLine::UserItem::GetDefault() on types needing special handling.
[in] | defaultValue | The default value from the UserItem. |
Definition at line 792 of file command-line.h.
std::string ns3::CommandLineHelper::GetDefault< bool > | ( | const std::string & | defaultValue | ) |
Helper to specialize CommandLine::UserItem::GetDefault() on types needing special handling.
[in] | defaultValue | The default value from the UserItem. |
Definition at line 896 of file command-line.cc.
std::string ns3::CommandLineHelper::GetDefault< Time > | ( | const std::string & | defaultValue | ) |
Helper to specialize CommandLine::UserItem::GetDefault() on types needing special handling.
[in] | defaultValue | The default value from the UserItem. |
Definition at line 942 of file command-line.cc.
bool ns3::CommandLineHelper::UserItemParse | ( | const std::string & | value, |
T & | dest | ||
) |
Helpers to specialize CommandLine::UserItem::Parse()
[in] | value | The argument name |
[out] | dest | The argument location |
T | [deduced] The type being specialized |
true
if parsing was successful Definition at line 806 of file command-line.h.