Abstract base class for CallbackImpl Provides reference counting and equality test. More...
#include "callback.h"
Public Member Functions | |
virtual | ~CallbackImplBase () |
Virtual destructor. More... | |
virtual std::string | GetTypeid () const =0 |
Get the name of this object type. More... | |
virtual bool | IsEqual (Ptr< const CallbackImplBase > other) const =0 |
Equality test. More... | |
Public Member Functions inherited from ns3::SimpleRefCount< CallbackImplBase > | |
SimpleRefCount () | |
Default constructor. More... | |
SimpleRefCount (const SimpleRefCount &o[[maybe_unused]]) | |
Copy constructor. More... | |
uint32_t | GetReferenceCount () const |
Get the reference count of the object. More... | |
SimpleRefCount & | operator= (const SimpleRefCount &o[[maybe_unused]]) |
Assignment operator. More... | |
void | Ref () const |
Increment the reference count. More... | |
void | Unref () const |
Decrement the reference count. More... | |
Static Protected Member Functions | |
static std::string | Demangle (const std::string &mangled) |
template<typename T > | |
static std::string | GetCppTypeid () |
Helper to get the C++ typeid as a string. More... | |
Abstract base class for CallbackImpl Provides reference counting and equality test.
Definition at line 80 of file callback.h.
|
inlinevirtual |
Virtual destructor.
Definition at line 84 of file callback.h.
|
staticprotected |
[in] | mangled | The mangled string |
Definition at line 142 of file callback.cc.
References NS_LOG_FUNCTION.
Referenced by GetCppTypeid().
|
inlinestaticprotected |
Helper to get the C++ typeid as a string.
T | [explicit] The type of the argument. |
Definition at line 115 of file callback.h.
References Demangle().
|
pure virtual |
Get the name of this object type.
Implemented in ns3::CallbackImpl< R, UArgs >.
|
pure virtual |