Collaboration diagram for Helpers to Specialize on bool:Namespaces | |
| ns3::CommandLineHelper | |
| Helpers for CommandLine to specialize on bool. | |
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 710 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 808 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 848 of file command-line.cc.
| 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 |
| <span | class="params">[deduced] T The type being specialized |
true if parsing was successful Definition at line 726 of file command-line.h.