hold objects of type Ptr<T> More...
#include <pointer.h>
Public Member Functions | |
PointerValue () | |
PointerValue (Ptr< Object > object) | |
template<typename T > | |
PointerValue (const Ptr< T > &object) | |
virtual Ptr< AttributeValue > | Copy (void) const |
virtual bool | DeserializeFromString (std::string value, Ptr< const AttributeChecker > checker) |
template<typename T > | |
Ptr< T > | Get (void) const |
template<typename T > | |
bool | GetAccessor (Ptr< T > &v) const |
Ptr< Object > | GetObject (void) const |
template<typename T > | |
operator Ptr< T > () const | |
virtual std::string | SerializeToString (Ptr< const AttributeChecker > checker) const |
template<typename T > | |
void | Set (const Ptr< T > &object) |
void | SetObject (Ptr< Object > object) |
![]() | |
AttributeValue () | |
virtual | ~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 | |
Ptr< Object > | m_value |
Additional Inherited Members | |
![]() | |
static void | Cleanup (void) |
Noop. More... | |
ns3::PointerValue::PointerValue | ( | ) |
Definition at line 29 of file pointer.cc.
References NS_LOG_FUNCTION.
Definition at line 35 of file pointer.cc.
References NS_LOG_FUNCTION.
ns3::PointerValue::PointerValue | ( | const Ptr< T > & | object | ) |
|
virtual |
Implements ns3::AttributeValue.
Definition at line 56 of file pointer.cc.
References NS_LOG_FUNCTION.
|
virtual |
value | a string representation of the value |
checker | a pointer to the checker associated to the attribute. |
Upon return of this function, this AttributeValue instance contains the deserialized value. In most cases, this method will not make any use of the checker argument. However, in a very limited set of cases, the checker argument is needed to perform proper serialization. A nice example of code which needs it is the EnumValue::SerializeToString code.
Implements ns3::AttributeValue.
Definition at line 71 of file pointer.cc.
References m_value, and NS_LOG_FUNCTION.
Ptr< T > ns3::PointerValue::Get | ( | void | ) | const |
Definition at line 148 of file pointer.h.
References m_value, and ns3::PeekPointer().
Referenced by ns3::RandomVariableStreamHelper::AssignStreams(), ns3::WifiHelper::AssignStreams(), AssignWifiRandomStreams(), ns3::AssignWifiRandomStreams(), ns3::AttributeIterator::DoIterate(), ns3::Resolver::DoResolve(), PointerAttributeTestCase::DoRun(), main(), and ns3::QosWifiMacHelper::Setup().
bool ns3::PointerValue::GetAccessor | ( | Ptr< T > & | v | ) | const |
Definition at line 162 of file pointer.h.
References m_value, and ns3::PeekPointer().
Definition at line 49 of file pointer.cc.
References m_value, and NS_LOG_FUNCTION.
Referenced by ns3::cell_tooltip_callback(), and ns3::internal::APointerChecker< T >::Check().
ns3::PointerValue::operator Ptr< T > | ( | ) | const |
|
virtual |
checker | the checker associated to the attribute |
In most cases, this method will not make any use of the checker argument. However, in a very limited set of cases, the checker argument is needed to perform proper serialization. A nice example of code which needs it is the EnumValue::SerializeToString code.
Implements ns3::AttributeValue.
Definition at line 62 of file pointer.cc.
References m_value, and NS_LOG_FUNCTION.
void ns3::PointerValue::Set | ( | const Ptr< T > & | object | ) |
Definition at line 42 of file pointer.cc.
References m_value, and NS_LOG_FUNCTION.
Definition at line 64 of file pointer.h.
Referenced by DeserializeFromString(), Get(), GetAccessor(), GetObject(), PointerValue(), SerializeToString(), Set(), and SetObject().