A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ns3::NodeContainer Class Reference

keep track of a set of node pointers. More...

#include <node-container.h>

Public Types

typedef std::vector< Ptr< Node >
>::const_iterator 
Iterator
 

Public Member Functions

 NodeContainer ()
 
 NodeContainer (Ptr< Node > node)
 
 NodeContainer (std::string nodeName)
 
 NodeContainer (const NodeContainer &a, const NodeContainer &b)
 
 NodeContainer (const NodeContainer &a, const NodeContainer &b, const NodeContainer &c)
 
 NodeContainer (const NodeContainer &a, const NodeContainer &b, const NodeContainer &c, const NodeContainer &d)
 
 NodeContainer (const NodeContainer &a, const NodeContainer &b, const NodeContainer &c, const NodeContainer &d, const NodeContainer &e)
 
void Add (NodeContainer other)
 Append the contents of another NodeContainer to the end of this container. More...
 
void Add (Ptr< Node > node)
 Append a single Ptr<Node> to this container. More...
 
void Add (std::string nodeName)
 Append to this container the single Ptr<Node> referred to via its object name service registered name. More...
 
Iterator Begin (void) const
 Get an iterator which refers to the first Node in the container. More...
 
void Create (uint32_t n)
 Create n nodes and append pointers to them to the end of this NodeContainer. More...
 
void Create (uint32_t n, uint32_t systemId)
 Create n nodes with specified systemId for distributed simulations and append pointers to them to the end of this NodeContainer. More...
 
Iterator End (void) const
 Get an iterator which indicates past-the-last Node in the container. More...
 
Ptr< NodeGet (uint32_t i) const
 Get the Ptr<Node> stored in this container at a given index. More...
 
uint32_t GetN (void) const
 Get the number of Ptr<Node> stored in this container. More...
 

Static Public Member Functions

static NodeContainer GetGlobal (void)
 Create a NodeContainer that contains a list of all nodes created through NodeContainer::Create() and stored in the ns3::NodeList. More...
 

Private Attributes

std::vector< Ptr< Node > > m_nodes
 

Detailed Description

keep track of a set of node pointers.

Typically ns-3 helpers operate on more than one node at a time. For example a device helper may want to install devices on a large number of similar nodes. The helper Install methods usually take a NodeContainer as a parameter. NodeContainers hold the multiple Ptr<Node> which are used to refer to the nodes.

Definition at line 38 of file node-container.h.

Constructor & Destructor Documentation

ns3::NodeContainer::NodeContainer ( )

Create an empty NodeContainer.

Definition at line 26 of file node-container.cc.

ns3::NodeContainer::NodeContainer ( Ptr< Node node)

Create a NodeContainer with exactly one node which has been previously instantiated. The single Node is specified by a smart pointer.

Parameters
nodeThe Ptr<Node> to add to the container.

Definition at line 30 of file node-container.cc.

ns3::NodeContainer::NodeContainer ( std::string  nodeName)

Create a NodeContainer with exactly one node which has been previously instantiated and assigned a name using the Object Name Service. This Node is then specified by its assigned name.

Parameters
nodeNameThe name of the Node Object to add to the container.

Definition at line 34 of file node-container.cc.

ns3::NodeContainer::NodeContainer ( const NodeContainer a,
const NodeContainer b 
)

Create a node container which is a concatenation of two input NodeContainers.

Parameters
aThe first NodeContainer
bThe second NodeContainer
Note
A frequently seen idiom that uses these constructors involves the implicit conversion by constructor of Ptr<Node>. When used, two Ptr<Node> will be passed to this constructor instead of NodeContainer&. C++ will notice the implicit conversion path that goes through the NodeContainer (Ptr<Node> node) constructor above. Using this conversion one may provide optionally provide arguments of Ptr<Node> to these constructors.

Definition at line 39 of file node-container.cc.

References Add().

ns3::NodeContainer::NodeContainer ( const NodeContainer a,
const NodeContainer b,
const NodeContainer c 
)

Create a node container which is a concatenation of three input NodeContainers.

Parameters
aThe first NodeContainer
bThe second NodeContainer
cThe third NodeContainer
Note
A frequently seen idiom that uses these constructors involves the implicit conversion by constructor of Ptr<Node>. When used, two Ptr<Node> will be passed to this constructor instead of NodeContainer&. C++ will notice the implicit conversion path that goes through the NodeContainer (Ptr<Node> node) constructor above. Using this conversion one may provide optionally provide arguments of Ptr<Node> to these constructors.

Definition at line 44 of file node-container.cc.

References Add().

ns3::NodeContainer::NodeContainer ( const NodeContainer a,
const NodeContainer b,
const NodeContainer c,
const NodeContainer d 
)

Create a node container which is a concatenation of four input NodeContainers.

Parameters
aThe first NodeContainer
bThe second NodeContainer
cThe third NodeContainer
dThe fourth NodeContainer
Note
A frequently seen idiom that uses these constructors involves the implicit conversion by constructor of Ptr<Node>. When used, two Ptr<Node> will be passed to this constructor instead of NodeContainer&. C++ will notice the implicit conversion path that goes through the NodeContainer (Ptr<Node> node) constructor above. Using this conversion one may provide optionally provide arguments of Ptr<Node> to these constructors.

Definition at line 51 of file node-container.cc.

References Add().

ns3::NodeContainer::NodeContainer ( const NodeContainer a,
const NodeContainer b,
const NodeContainer c,
const NodeContainer d,
const NodeContainer e 
)

Create a node container which is a concatenation of five input NodeContainers.

Parameters
aThe first NodeContainer
bThe second NodeContainer
cThe third NodeContainer
dThe fourth NodeContainer
eThe fifth NodeContainer
Note
A frequently seen idiom that uses these constructors involves the implicit conversion by constructor of Ptr<Node>. When used, two Ptr<Node> will be passed to this constructor instead of NodeContainer&. C++ will notice the implicit conversion path that goes through the NodeContainer (Ptr<Node> node) constructor above. Using this conversion one may provide optionally provide arguments of Ptr<Node> to these constructors.

Definition at line 60 of file node-container.cc.

References Add().

Member Function Documentation

void ns3::NodeContainer::Add ( Ptr< Node node)

Append a single Ptr<Node> to this container.

Parameters
nodeThe Ptr<Node> to append.

Definition at line 117 of file node-container.cc.

void ns3::NodeContainer::Add ( std::string  nodeName)

Append to this container the single Ptr<Node> referred to via its object name service registered name.

Parameters
nodeNameThe name of the Node Object to add to the container.

Definition at line 122 of file node-container.cc.

NodeContainer::Iterator ns3::NodeContainer::Begin ( void  ) const

Get an iterator which refers to the first Node in the container.

Nodes can be retrieved from the container in two ways. First, directly by an index into the container, and second, using an iterator. This method is used in the iterator method and is typically used in a for-loop to run through the Nodes

NodeContainer::Iterator i;
for (i = container.Begin (); i != container.End (); ++i)
{
(*i)->method (); // some Node method
}
Returns
an iterator which refers to the first Node in the container.

Definition at line 72 of file node-container.cc.

Referenced by Add(), ns3::LteHelper::AddX2Interface(), ns3::AodvHelper::AssignStreams(), ns3::OlsrHelper::AssignStreams(), ns3::OnOffHelper::AssignStreams(), ns3::InternetStackHelper::AssignStreams(), ns3::MobilityHelper::AssignStreams(), ns3::RandomRoomPositionAllocatorTestCase::DoRun(), ns3::SameRoomPositionAllocatorTestCase::DoRun(), ns3::UanHelper::EnableAscii(), ns3::MobilityHelper::EnableAscii(), ns3::AsciiTraceHelperForDevice::EnableAsciiImpl(), ns3::AsciiTraceHelperForIpv4::EnableAsciiIpv4Impl(), ns3::AsciiTraceHelperForIpv6::EnableAsciiIpv6Impl(), ns3::PcapHelperForDevice::EnablePcap(), ns3::PcapHelperForIpv4::EnablePcapIpv4(), ns3::PcapHelperForIpv6::EnablePcapIpv6(), ns3::SameRoomPositionAllocator::GetNext(), ns3::V4PingHelper::Install(), ns3::FlowMonitorHelper::Install(), ns3::PacketSocketHelper::Install(), ns3::PacketSinkHelper::Install(), ns3::Ping6Helper::Install(), ns3::UdpServerHelper::Install(), ns3::EnergySourceHelper::Install(), ns3::BulkSendHelper::Install(), ns3::OnOffHelper::Install(), ns3::UdpEchoServerHelper::Install(), ns3::FdNetDeviceHelper::Install(), ns3::EmuHelper::Install(), ns3::UdpClientHelper::Install(), ns3::WaveformGeneratorHelper::Install(), ns3::AdhocAlohaNoackIdealPhyHelper::Install(), ns3::SpectrumAnalyzerHelper::Install(), ns3::WifiHelper::Install(), ns3::InternetStackHelper::Install(), ns3::MeshHelper::Install(), ns3::UdpTraceClientHelper::Install(), ns3::WimaxHelper::Install(), ns3::CsmaHelper::Install(), ns3::UanHelper::Install(), ns3::UdpEchoClientHelper::Install(), ns3::MobilityHelper::Install(), ns3::InternetStackHelper::InstallCR(), ns3::WifiHelper::InstallCR(), ns3::LteSimpleHelper::InstallEnbDevice(), ns3::LteHelper::InstallEnbDevice(), ns3::LteSimpleHelper::InstallUeDevice(), and ns3::LteHelper::InstallUeDevice().

void ns3::NodeContainer::Create ( uint32_t  n)

Create n nodes and append pointers to them to the end of this NodeContainer.

Nodes are at the heart of any ns-3 simulation. One of the first tasks that any simulation needs to do is to create a number of nodes. This method automates that task.

Parameters
nThe number of Nodes to create

Definition at line 93 of file node-container.cc.

Referenced by BatteryLifetimeTest::ConstantLoadTest(), ns3::olsr::Bug780Test::CreateNodes(), ns3::olsr::HelloRegressionTest::CreateNodes(), ns3::aodv::Bug772ChainTest::CreateNodes(), ns3::olsr::TcRegressionTest::CreateNodes(), MeshTest::CreateNodes(), ns3::Ns2MobilityHelperTest::CreateNodes(), ns3::aodv::ChainRegressionTest::CreateNodes(), ns3::CsmaStarHelper::CsmaStarHelper(), BasicEnergyDepletionTest::DepletionTestCase(), IpAddressHelperTestCasev6::DoRun(), ns3::aodv::LoopbackTestCase::DoRun(), ns3::LenaMimoTestCase::DoRun(), ns3::LenaHarqTestCase::DoRun(), ns3::LenaDataPhyErrorModelTestCase::DoRun(), ns3::LenaRrFfMacSchedulerTestCase::DoRun(), ns3::LteRlcAmE2eTestCase::DoRun(), ns3::LteRlcUmE2eTestCase::DoRun(), ns3::LteRrcConnectionEstablishmentTestCase::DoRun(), ns3::AnimationInterfaceTestCase::DoRun(), ns3::LenaPfFfMacSchedulerTestCase1::DoRun(), ns3::LenaFdBetFfMacSchedulerTestCase1::DoRun(), ns3::LenaPssFfMacSchedulerTestCase1::DoRun(), ns3::LenaTdBetFfMacSchedulerTestCase1::DoRun(), WifiMsduAggregatorThroughputTest::DoRun(), LenaFdMtFfMacSchedulerTestCase::DoRun(), LenaTdMtFfMacSchedulerTestCase::DoRun(), ns3::LenaTdTbfqFfMacSchedulerTestCase1::DoRun(), LenaTtaFfMacSchedulerTestCase::DoRun(), ns3::LenaFdTbfqFfMacSchedulerTestCase1::DoRun(), ns3::LteLinkAdaptationTestCase::DoRun(), UdpClientServerTestCase::DoRun(), MobilityTraceTestCase::DoRun(), ns3::LteInterferenceTestCase::DoRun(), Ns3WimaxSfCreationTestCase::DoRun(), Ns3WimaxNetworkEntryTestCase::DoRun(), ns3::LtePathlossModelSystemTestCase::DoRun(), DynamicGlobalRoutingTestCase::DoRun(), ns3::LteEnbAntennaTestCase::DoRun(), CsmaBridgeTestCase::DoRun(), ns3::LteX2HandoverTestCase::DoRun(), ns3::LenaDlCtrlPhyErrorModelTestCase::DoRun(), Ns3TcpLossTestCase::DoRun(), Ns3TcpStateTestCase::DoRun(), ns3::LenaPfFfMacSchedulerTestCase2::DoRun(), ns3::LenaFdBetFfMacSchedulerTestCase2::DoRun(), ns3::LenaTdBetFfMacSchedulerTestCase2::DoRun(), ns3::RandomRoomPositionAllocatorTestCase::DoRun(), ns3::LenaPssFfMacSchedulerTestCase2::DoRun(), ns3::LenaTdTbfqFfMacSchedulerTestCase2::DoRun(), ns3::LenaFdTbfqFfMacSchedulerTestCase2::DoRun(), ns3::LteHandoverDelayTestCase::DoRun(), ns3::SpectrumIdealPhyTestCase::DoRun(), ns3::EpcS1uDlTestCase::DoRun(), Ns3TcpInteroperabilityTestCase::DoRun(), ns3::LteEpcE2eDataTestCase::DoRun(), ns3::BriteTopologyFunctionTestCase::DoRun(), ns3::BuildingsHelperOneTestCase::DoRun(), Ns3WimaxManagementConnectionsTestCase::DoRun(), UdpTraceClientServerTestCase::DoRun(), ns3::SameRoomPositionAllocatorTestCase::DoRun(), Ns3TcpSocketTestCase2::DoRun(), CsmaBroadcastTestCase::DoRun(), Ns3TcpCwndTestCase1::DoRun(), UdpEchoClientSetFillTestCase::DoRun(), ns3::EpcS1uUlTestCase::DoRun(), CsmaMulticastTestCase::DoRun(), WaypointMobilityModelViaHelper::DoRun(), Ns3TcpCwndTestCase2::DoRun(), CsmaOneSubnetTestCase::DoRun(), CsmaPacketSocketTestCase::DoRun(), CsmaPingTestCase::DoRun(), CsmaRawIpSocketTestCase::DoRun(), CsmaStarTestCase::DoRun(), ns3::LteFadingTestSuite::LteFadingTestSuite(), ns3::PointToPointDumbbellHelper::PointToPointDumbbellHelper(), ns3::PointToPointGridHelper::PointToPointGridHelper(), ns3::PointToPointStarHelper::PointToPointStarHelper(), and BatteryLifetimeTest::VariableLoadTest().

void ns3::NodeContainer::Create ( uint32_t  n,
uint32_t  systemId 
)

Create n nodes with specified systemId for distributed simulations and append pointers to them to the end of this NodeContainer.

Nodes are at the heart of any ns-3 simulation. One of the first tasks that any simulation needs to do is to create a number of nodes. This method automates that task, and adds the ability to specify systemId for distributed simulations.

Parameters
nThe number of Nodes to create
systemIdThe system id or rank associated with this node

Definition at line 101 of file node-container.cc.

NodeContainer::Iterator ns3::NodeContainer::End ( void  ) const

Get an iterator which indicates past-the-last Node in the container.

Nodes can be retrieved from the container in two ways. First, directly by an index into the container, and second, using an iterator. This method is used in the iterator method and is typically used in a for-loop to run through the Nodes

NodeContainer::Iterator i;
for (i = container.Begin (); i != container.End (); ++i)
{
(*i)->method (); // some Node method
}
Returns
an iterator which indicates an ending condition for a loop.

Definition at line 77 of file node-container.cc.

Referenced by Add(), ns3::LteHelper::AddX2Interface(), ns3::AodvHelper::AssignStreams(), ns3::OlsrHelper::AssignStreams(), ns3::OnOffHelper::AssignStreams(), ns3::InternetStackHelper::AssignStreams(), ns3::MobilityHelper::AssignStreams(), ns3::RandomRoomPositionAllocatorTestCase::DoRun(), ns3::SameRoomPositionAllocatorTestCase::DoRun(), ns3::UanHelper::EnableAscii(), ns3::MobilityHelper::EnableAscii(), ns3::AsciiTraceHelperForDevice::EnableAsciiImpl(), ns3::AsciiTraceHelperForIpv4::EnableAsciiIpv4Impl(), ns3::AsciiTraceHelperForIpv6::EnableAsciiIpv6Impl(), ns3::PcapHelperForDevice::EnablePcap(), ns3::PcapHelperForIpv4::EnablePcapIpv4(), ns3::PcapHelperForIpv6::EnablePcapIpv6(), ns3::SameRoomPositionAllocator::GetNext(), ns3::V4PingHelper::Install(), ns3::FlowMonitorHelper::Install(), ns3::PacketSocketHelper::Install(), ns3::PacketSinkHelper::Install(), ns3::Ping6Helper::Install(), ns3::UdpServerHelper::Install(), ns3::EnergySourceHelper::Install(), ns3::BulkSendHelper::Install(), ns3::OnOffHelper::Install(), ns3::UdpEchoServerHelper::Install(), ns3::FdNetDeviceHelper::Install(), ns3::EmuHelper::Install(), ns3::UdpClientHelper::Install(), ns3::WaveformGeneratorHelper::Install(), ns3::AdhocAlohaNoackIdealPhyHelper::Install(), ns3::SpectrumAnalyzerHelper::Install(), ns3::WifiHelper::Install(), ns3::InternetStackHelper::Install(), ns3::MeshHelper::Install(), ns3::UdpTraceClientHelper::Install(), ns3::WimaxHelper::Install(), ns3::CsmaHelper::Install(), ns3::UanHelper::Install(), ns3::UdpEchoClientHelper::Install(), ns3::MobilityHelper::Install(), ns3::InternetStackHelper::InstallCR(), ns3::WifiHelper::InstallCR(), ns3::LteSimpleHelper::InstallEnbDevice(), ns3::LteHelper::InstallEnbDevice(), ns3::LteSimpleHelper::InstallUeDevice(), and ns3::LteHelper::InstallUeDevice().

Ptr< Node > ns3::NodeContainer::Get ( uint32_t  i) const

Get the Ptr<Node> stored in this container at a given index.

Nodes can be retrieved from the container in two ways. First, directly by an index into the container, and second, using an iterator. This method is used in the direct method and is used to retrieve the indexed Ptr<Appliation>.

uint32_t nNodes = container.GetN ();
for (uint32_t i = 0 i < nNodes; ++i)
{
Ptr<Node> p = container.Get (i)
i->method (); // some Node method
}
Parameters
ithe index of the requested node pointer.
Returns
the requested node pointer.

Definition at line 88 of file node-container.cc.

Referenced by ns3::PointToPointStarHelper::BoundingBox(), ns3::aodv::Bug772ChainTest::CreateDevices(), ns3::aodv::ChainRegressionTest::CreateDevices(), ns3::olsr::Bug780Test::CreateNodes(), ns3::Ns2MobilityHelperTest::CreateNodes(), ns3::CsmaStarHelper::CsmaStarHelper(), IpAddressHelperTestCasev6::DoRun(), ns3::aodv::LoopbackTestCase::DoRun(), ns3::LenaMimoTestCase::DoRun(), ns3::LenaHarqTestCase::DoRun(), ns3::LenaDataPhyErrorModelTestCase::DoRun(), ns3::LenaRrFfMacSchedulerTestCase::DoRun(), ns3::AnimationInterfaceTestCase::DoRun(), ns3::LenaPfFfMacSchedulerTestCase1::DoRun(), ns3::LenaFdBetFfMacSchedulerTestCase1::DoRun(), ns3::LenaTdBetFfMacSchedulerTestCase1::DoRun(), LenaTdMtFfMacSchedulerTestCase::DoRun(), ns3::LenaTdTbfqFfMacSchedulerTestCase1::DoRun(), WifiMsduAggregatorThroughputTest::DoRun(), LenaTtaFfMacSchedulerTestCase::DoRun(), LenaFdMtFfMacSchedulerTestCase::DoRun(), ns3::LenaFdTbfqFfMacSchedulerTestCase1::DoRun(), ns3::LenaPssFfMacSchedulerTestCase1::DoRun(), UdpClientServerTestCase::DoRun(), ns3::LtePathlossModelSystemTestCase::DoRun(), DynamicGlobalRoutingTestCase::DoRun(), CsmaBridgeTestCase::DoRun(), ns3::LteX2HandoverTestCase::DoRun(), ns3::LenaDlCtrlPhyErrorModelTestCase::DoRun(), Ns3TcpLossTestCase::DoRun(), Ns3TcpStateTestCase::DoRun(), ns3::LenaPfFfMacSchedulerTestCase2::DoRun(), ns3::LenaTdBetFfMacSchedulerTestCase2::DoRun(), ns3::LenaFdBetFfMacSchedulerTestCase2::DoRun(), ns3::LenaFdTbfqFfMacSchedulerTestCase2::DoRun(), ns3::LenaTdTbfqFfMacSchedulerTestCase2::DoRun(), ns3::LenaPssFfMacSchedulerTestCase2::DoRun(), ns3::LteHandoverDelayTestCase::DoRun(), ns3::SpectrumIdealPhyTestCase::DoRun(), ns3::EpcS1uDlTestCase::DoRun(), Ns3TcpInteroperabilityTestCase::DoRun(), ns3::LteEpcE2eDataTestCase::DoRun(), ns3::BriteTopologyFunctionTestCase::DoRun(), ns3::BuildingsHelperOneTestCase::DoRun(), UdpTraceClientServerTestCase::DoRun(), Ns3TcpSocketTestCase2::DoRun(), CsmaBroadcastTestCase::DoRun(), Ns3TcpCwndTestCase1::DoRun(), ns3::aodv::ChainRegressionTest::DoRun(), UdpEchoClientSetFillTestCase::DoRun(), ns3::EpcS1uUlTestCase::DoRun(), CsmaMulticastTestCase::DoRun(), WaypointMobilityModelViaHelper::DoRun(), Ns3TcpCwndTestCase2::DoRun(), CsmaOneSubnetTestCase::DoRun(), CsmaPacketSocketTestCase::DoRun(), CsmaPingTestCase::DoRun(), CsmaRawIpSocketTestCase::DoRun(), CsmaStarTestCase::DoRun(), ns3::PointToPointStarHelper::GetHub(), ns3::CsmaStarHelper::GetHub(), ns3::PointToPointDumbbellHelper::GetLeft(), ns3::PointToPointDumbbellHelper::GetRight(), ns3::PointToPointStarHelper::GetSpokeNode(), ns3::CsmaStarHelper::GetSpokeNode(), ns3::PointToPointHelper::Install(), MeshTest::InstallApplication(), ns3::PointToPointGridHelper::InstallStack(), ns3::LteFadingTestSuite::LteFadingTestSuite(), ns3::PointToPointDumbbellHelper::PointToPointDumbbellHelper(), ns3::PointToPointGridHelper::PointToPointGridHelper(), ns3::PointToPointStarHelper::PointToPointStarHelper(), ns3::AnimationInterface::SetNodeColor(), ns3::AnimationInterface::SetNodeDescription(), and ns3::LteHexGridEnbTopologyHelper::SetPositionAndInstallEnbDevice().

uint32_t ns3::NodeContainer::GetN ( void  ) const

Get the number of Ptr<Node> stored in this container.

Nodes can be retrieved from the container in two ways. First, directly by an index into the container, and second, using an iterator. This method is used in the direct method and is typically used to define an ending condition in a for-loop that runs through the stored Nodes

uint32_t nNodes = container.GetN ();
for (uint32_t i = 0 i < nNodes; ++i)
{
Ptr<Node> p = container.Get (i)
i->method (); // some Node method
}
Returns
the number of Ptr<Node> stored in this container.

Definition at line 83 of file node-container.cc.

Referenced by ns3::PointToPointStarHelper::AssignIpv4Addresses(), ns3::CsmaStarHelper::AssignIpv4Addresses(), ns3::PointToPointStarHelper::AssignIpv6Addresses(), ns3::CsmaStarHelper::AssignIpv6Addresses(), ns3::PointToPointStarHelper::BoundingBox(), ns3::olsr::Bug780Test::CreateNodes(), ns3::CsmaStarHelper::CsmaStarHelper(), ns3::RocketfuelTopologyReaderTest::DoRun(), ns3::LenaFdTbfqFfMacSchedulerTestCase1::DoRun(), ns3::LenaPssFfMacSchedulerTestCase1::DoRun(), ns3::LenaTdTbfqFfMacSchedulerTestCase1::DoRun(), ns3::LteX2HandoverTestCase::DoRun(), ns3::LenaFdTbfqFfMacSchedulerTestCase2::DoRun(), ns3::LenaPssFfMacSchedulerTestCase2::DoRun(), ns3::LenaTdTbfqFfMacSchedulerTestCase2::DoRun(), ns3::EpcS1uDlTestCase::DoRun(), ns3::EpcS1uUlTestCase::DoRun(), CsmaStarTestCase::DoRun(), ns3::PointToPointHelper::Install(), ns3::PointToPointGridHelper::InstallStack(), ns3::PointToPointDumbbellHelper::LeftCount(), ns3::PointToPointStarHelper::PointToPointStarHelper(), ns3::PointToPointDumbbellHelper::RightCount(), ns3::AnimationInterface::SetNodeColor(), ns3::AnimationInterface::SetNodeDescription(), ns3::LteHexGridEnbTopologyHelper::SetPositionAndInstallEnbDevice(), ns3::PointToPointStarHelper::SpokeCount(), and ns3::CsmaStarHelper::SpokeCount().


The documentation for this class was generated from the following files: