AttributeValue implementation for Callback. More...
#include "callback.h"
Inheritance 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 () |
| virtual Ptr< AttributeValue > | Copy () const =0 |
| virtual bool | DeserializeFromString (std::string value, Ptr< const AttributeChecker > checker)=0 |
| virtual std::string | SerializeToString (Ptr< const AttributeChecker > checker) const =0 |
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 801 of file callback.h.
| ns3::CallbackValue::CallbackValue | ( | ) |
Definition at line 35 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 41 of file callback.cc.
|
override |
Definition at line 46 of file callback.cc.
References NS_LOG_FUNCTION.
|
overridevirtual |
Implements ns3::AttributeValue.
Definition at line 66 of file callback.cc.
References m_value, and NS_LOG_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 82 of file callback.cc.
References NS_LOG_FUNCTION.
| CallbackBase ns3::CallbackValue::Get | ( | ) |
Definition at line 59 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 844 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 73 of file callback.cc.
References ns3::CallbackBase::GetImpl(), m_value, NS_LOG_FUNCTION, and ns3::PeekPointer().
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 52 of file callback.cc.
References m_value, and NS_LOG_FUNCTION.
|
private |
The stored Callback instance.
Definition at line 831 of file callback.h.
Referenced by Copy(), Get(), GetAccessor(), SerializeToString(), and Set().