A Discrete-Event Network Simulator
API
Enum Attribute

Attribute implementation for Enum. More...

+ Collaboration diagram for Enum Attribute:

Files

file  enum.cc
 ns3::EnumValue attribute value implementation.
 
file  enum.h
 ns3::EnumValue attribute value declarations.
 

Classes

class  ns3::EnumChecker
 AttributeChecker implementation for EnumValue. More...
 
class  ns3::EnumValue
 Hold variables of type enum. More...
 

Functions

template<typename T1 >
Ptr< const AttributeAccessor > ns3::MakeEnumAccessor (T1 a1)
 Create an AttributeAccessor for a class data member, or a lone class get functor or set method. More...
 
template<typename T1 , typename T2 >
Ptr< const AttributeAccessor > ns3::MakeEnumAccessor (T1 a1, T2 a2)
 Create an AttributeAccessor using a pair of get functor and set methods from a class. More...
 

Detailed Description

Attribute implementation for Enum.

Function Documentation

template<typename T1 >
Ptr< const AttributeAccessor > ns3::MakeEnumAccessor ( T1  a1)

Create an AttributeAccessor for a class data member, or a lone class get functor or set method.

The get functor method should have a signature like

typedef U (T::*getter)(void) const

where T is the class and U is the type of the return value.

The set method should have one of these signatures:

typedef void (T::*setter)(U)
typedef bool (T::*setter)(U)

where T is the class and U is the type of the value to set the attribute to, which should be compatible with the specific AttributeValue type V which holds the value (or the type implied by the name Make<V>Accessor of this function.) In the case of a setter returning bool, the return value should be true if the value could be set successfully.

Template Parameters
V[explicit] (If present) The specific AttributeValue type to use to represent the Attribute. (If not present, the type V is implicit in the name of this function, as "Make<V>Accessor"
T1[deduced] The type of the class data member, or the type of the class get functor or set method.
Parameters
[in]a1The address of the data member, or the get or set method.
Returns
The AttributeAccessor
See also
AttributeAccessor

Definition at line 209 of file enum.h.

Referenced by ns3::Building::GetTypeId(), ns3::WimaxConnection::GetTypeId(), ns3::GridBuildingAllocator::GetTypeId(), ns3::ItuR1411NlosOverRooftopPropagationLossModel::GetTypeId(), ns3::LteAmc::GetTypeId(), ns3::OkumuraHataPropagationLossModel::GetTypeId(), ns3::RandomWalk2dMobilityModel::GetTypeId(), ns3::QueueBase::GetTypeId(), ns3::LteSimpleHelper::GetTypeId(), ns3::PieQueueDisc::GetTypeId(), ns3::HybridBuildingsPropagationLossModel::GetTypeId(), ns3::RealtimeSimulatorImpl::GetTypeId(), ns3::TcpLedbat::GetTypeId(), ns3::TvSpectrumTransmitter::GetTypeId(), ns3::CsmaNetDevice::GetTypeId(), ns3::CoDelQueueDisc::GetTypeId(), ns3::TcpWestwood::GetTypeId(), ns3::FfMacScheduler::GetTypeId(), ns3::ConfigStore::GetTypeId(), ns3::RedQueueDisc::GetTypeId(), ns3::FdNetDevice::GetTypeId(), ns3::olsr::RoutingProtocol::GetTypeId(), ns3::WifiRemoteStationManager::GetTypeId(), AttributeObjectTest::GetTypeId(), ns3::GridPositionAllocator::GetTypeId(), ns3::TapBridge::GetTypeId(), ns3::WifiMacQueue::GetTypeId(), ns3::Rip::GetTypeId(), ns3::RipNg::GetTypeId(), ns3::RateErrorModel::GetTypeId(), and ns3::LteEnbRrc::GetTypeId().

+ Here is the caller graph for this function:

template<typename T1 , typename T2 >
Ptr< const AttributeAccessor > ns3::MakeEnumAccessor ( T1  a1,
T2  a2 
)

Create an AttributeAccessor using a pair of get functor and set methods from a class.

The get functor method should have a signature like

typedef U (T::*getter)(void) const

where T is the class and U is the type of the return value.

The set method should have one of these signatures:

typedef void (T::*setter)(U)
typedef bool (T::*setter)(U)

where T is the class and U is the type of the value to set the attribute to, which should be compatible with the specific AttributeValue type V which holds the value (or the type implied by the name Make<V>Accessor of this function.) In the case of a setter returning bool, the return value should be true if the value could be set successfully.

In practice the setter and getter arguments can appear in either order, but setter first is preferred.

Template Parameters
V[explicit] (If present) The specific AttributeValue type to use to represent the Attribute. (If not present, the type V is implicit in the name of this function as "Make<V>Accessor"
T1[deduced] The type of the class data member, or the type of the class get functor or set method.
T2[deduced] The type of the getter class functor method.
Parameters
[in]a2The address of the class method to set the attribute.
[in]a1The address of the data member, or the get or set method.
Returns
The AttributeAccessor
See also
AttributeAccessor

Definition at line 215 of file enum.h.