AttributeValue implementation for Callback. More...
#include "callback.h"
 Inheritance diagram for ns3::CallbackValue:
 Inheritance diagram for ns3::CallbackValue: Collaboration diagram for ns3::CallbackValue:
 Collaboration diagram for ns3::CallbackValue:| Public Member Functions | |
| CallbackValue () | |
| CallbackValue (const CallbackBase &value) | |
| Constructor. | |
| ~CallbackValue () override | |
| Ptr< AttributeValue > | Copy () const override | 
| bool | DeserializeFromString (std::string value, Ptr< const AttributeChecker > checker) override | 
| Deserialize from string (not implemented) | |
| CallbackBase | Get () | 
| template<typename T > | |
| bool | GetAccessor (T &value) const | 
| Access the Callback value as type T. | |
| std::string | SerializeToString (Ptr< const AttributeChecker > checker) const override | 
| Serialize to string. | |
| void | Set (const CallbackBase &value) | 
| Set the value. | |
|  Public Member Functions inherited from ns3::AttributeValue | |
| AttributeValue () | |
| virtual | ~AttributeValue () | 
|  Public Member Functions inherited from ns3::SimpleRefCount< AttributeValue > | |
| SimpleRefCount () | |
| Default constructor. | |
| SimpleRefCount (const SimpleRefCount &o) | |
| Copy constructor. | |
| uint32_t | GetReferenceCount () const | 
| Get the reference count of the object. | |
| SimpleRefCount & | operator= (const SimpleRefCount &o) | 
| Assignment operator. | |
| void | Ref () const | 
| Increment the reference count. | |
| void | Unref () const | 
| Decrement the reference count. | |
| Private Attributes | |
| CallbackBase | m_value | 
| The stored Callback instance. | |
AttributeValue implementation for Callback.
Definition at line 785 of file callback.h.
| ns3::CallbackValue::CallbackValue | ( | ) | 
Definition at line 24 of file callback.cc.
References NS_LOG_FUNCTION.
| ns3::CallbackValue::CallbackValue | ( | const CallbackBase & | value | ) | 
Constructor.
| [in] | value | The Callback value to use. | 
Definition at line 30 of file callback.cc.
| 
 | override | 
Definition at line 35 of file callback.cc.
References NS_LOG_FUNCTION.
| 
 | overridevirtual | 
Implements ns3::AttributeValue.
Definition at line 55 of file callback.cc.
References ns3::Create(), m_value, and NS_LOG_FUNCTION.
 Here is the call graph for this function:
 Here is the call graph for this function:| 
 | overridevirtual | 
Deserialize from string (not implemented)
| [in] | value | Source string | 
| [in] | checker | Checker to validate with | 
true if successful Implements ns3::AttributeValue.
Definition at line 71 of file callback.cc.
References NS_LOG_FUNCTION.
| CallbackBase ns3::CallbackValue::Get | ( | ) | 
Definition at line 48 of file callback.cc.
References m_value, and NS_LOG_FUNCTION.
| bool ns3::CallbackValue::GetAccessor | ( | T & | value | ) | const | 
Access the Callback value as type T. 
| T | [explicit] The type to cast to. | 
| [out] | value | The Callback value, as type T. | 
Definition at line 828 of file callback.h.
References m_value, and NS_FATAL_ERROR_NO_MSG.
| 
 | overridevirtual | 
Serialize to string.
| [in] | checker | The checker to validate with | 
Implements ns3::AttributeValue.
Definition at line 62 of file callback.cc.
References ns3::CallbackBase::GetImpl(), m_value, NS_LOG_FUNCTION, and ns3::PeekPointer().
 Here is the call graph for this function:
 Here is the call graph for this function:| void ns3::CallbackValue::Set | ( | const CallbackBase & | value | ) | 
Set the value.
| [in] | value | The value to adopt. | 
Definition at line 41 of file callback.cc.
References m_value, and NS_LOG_FUNCTION.
| 
 | private | 
The stored Callback instance.
Definition at line 815 of file callback.h.
Referenced by Copy(), Get(), GetAccessor(), SerializeToString(), and Set().