AttributeValue implementation for Callback. More...
#include "callback.h"
 Inheritance diagram for ns3::CallbackValue:
 Collaboration diagram for ns3::CallbackValue:Public Member Functions | |
| CallbackValue () | |
| Constructor.  More... | |
| CallbackValue (const CallbackBase &base) | |
| Copy constructor.  More... | |
| virtual | ~CallbackValue () | 
| Destructor.  More... | |
| virtual Ptr< AttributeValue > | Copy (void) const | 
| virtual bool | DeserializeFromString (std::string value, Ptr< const AttributeChecker > checker) | 
| Deserialize from string (not implemented)  More... | |
| template<typename T > | |
| bool | GetAccessor (T &value) const | 
| Give value my callback, if type compatible.  More... | |
| virtual std::string | SerializeToString (Ptr< const AttributeChecker > checker) const | 
| Serialize to string.  More... | |
| void | Set (CallbackBase base) | 
  Public Member Functions inherited from ns3::AttributeValue | |
| AttributeValue () | |
| virtual | ~AttributeValue () | 
  Public Member Functions inherited from ns3::SimpleRefCount< AttributeValue > | |
| SimpleRefCount () | |
| Constructor.  More... | |
| SimpleRefCount (const SimpleRefCount &o) | |
| Copy constructor.  More... | |
| uint32_t | GetReferenceCount (void) const | 
| Get the reference count of the object.  More... | |
| SimpleRefCount & | operator= (const SimpleRefCount &o) | 
| Assignment.  More... | |
| void | Ref (void) const | 
| Increment the reference count.  More... | |
| void | Unref (void) const | 
| Decrement the reference count.  More... | |
Private Attributes | |
| CallbackBase | m_value | 
| the CallbackBase  More... | |
Additional Inherited Members | |
  Static Public Member Functions inherited from ns3::SimpleRefCount< AttributeValue > | |
| static void | Cleanup (void) | 
| Noop.  More... | |
AttributeValue implementation for Callback.
Definition at line 1871 of file callback.h.
| ns3::CallbackValue::CallbackValue | ( | ) | 
| ns3::CallbackValue::CallbackValue | ( | const CallbackBase & | base | ) | 
      
  | 
  virtual | 
      
  | 
  virtual | 
Implements ns3::AttributeValue.
Definition at line 55 of file callback.cc.
References m_value, and NS_LOG_FUNCTION.
      
  | 
  virtual | 
Deserialize from string (not implemented)
| [in] | value | Source string | 
| [in] | checker | Checker to validate with | 
true if successful Implements ns3::AttributeValue.
Definition at line 69 of file callback.cc.
References NS_LOG_FUNCTION.
| bool ns3::CallbackValue::GetAccessor | ( | T & | value | ) | const | 
Give value my callback, if type compatible.
Access the Callback value as type T.
| [out] | value | Destination callback | 
true if successful| T | [explicit] The type to cast to. | 
| [out] | value | The Callback value, as type T.  | 
Definition at line 1921 of file callback.h.
References m_value, and NS_FATAL_ERROR_NO_MSG.
      
  | 
  virtual | 
Serialize to string.
| [in] | checker | The checker to validate with | 
Implements ns3::AttributeValue.
Definition at line 61 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 | ( | CallbackBase | base | ) | 
| [in] | base | The CallbackBase to use | 
Definition at line 48 of file callback.cc.
References m_value, and NS_LOG_FUNCTION.
      
  | 
  private | 
the CallbackBase
The stored Callback instance.
Definition at line 1910 of file callback.h.
Referenced by Copy(), GetAccessor(), SerializeToString(), and Set().