|
ns-3
|
hold objects of type Ptr<T> More...
#include <pointer.h>


Public Member Functions | |
| PointerValue (Ptr< Object > object) | |
| void | SetObject (Ptr< Object > object) |
| Ptr< Object > | GetObject (void) const |
| template<typename T > | |
| PointerValue (const Ptr< T > &object) | |
| template<typename T > | |
| void | Set (const Ptr< T > &object) |
| template<typename T > | |
| Ptr< T > | Get (void) const |
| template<typename T > | |
| bool | GetAccessor (Ptr< T > &v) const |
| template<typename T > | |
| operator Ptr< T > () const | |
| virtual Ptr< AttributeValue > | Copy (void) const |
| virtual std::string | SerializeToString (Ptr< const AttributeChecker > checker) const |
| virtual bool | DeserializeFromString (std::string value, Ptr< const AttributeChecker > checker) |
hold objects of type Ptr<T>
|
virtual |
Implements ns3::AttributeValue.
|
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.
References ns3::ObjectFactory::Create().
|
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.