This singleton class template ensures that the type for which we want a singleton has a lifetime bounded by the simulation run lifetime. More...
#include "simulation-singleton.h"
Public Member Functions | |
SimulationSingleton ()=delete | |
SimulationSingleton (const SimulationSingleton< T > &)=delete | |
SimulationSingleton & | operator= (const SimulationSingleton< T > &)=delete |
Static Public Member Functions | |
static T * | Get () |
Get a pointer to the singleton instance. More... | |
Static Private Member Functions | |
static void | DeleteObject () |
Delete the static instance. More... | |
static T ** | GetObject () |
Get the singleton object, creating a new one if it doesn't exist yet. More... | |
This singleton class template ensures that the type for which we want a singleton has a lifetime bounded by the simulation run lifetime.
That it, the underlying type will be automatically deleted upon a call to Simulator::Destroy.
For a singleton with a lifetime bounded by the process, not the simulation run, see Singleton.
Definition at line 43 of file simulation-singleton.h.
|
delete |
|
delete |
|
staticprivate |
Delete the static instance.
Definition at line 111 of file simulation-singleton.h.
|
static |
Get a pointer to the singleton instance.
This instance will be automatically deleted when the simulation is destroyed by a call to Simulator::Destroy.
Definition at line 90 of file simulation-singleton.h.
Referenced by ns3::Ipv4AddressGenerator::AddAllocated(), ns3::Ipv6AddressGenerator::AddAllocated(), ns3::GlobalRouteManager::BuildGlobalRoutingDatabase(), ns3::GlobalRouteManager::DeleteGlobalRoutes(), ns3::Ipv4AddressGenerator::GetAddress(), ns3::Ipv6AddressGenerator::GetAddress(), ns3::Ipv4AddressGenerator::GetNetwork(), ns3::Ipv6AddressGenerator::GetNetwork(), ns3::Ipv4AddressGenerator::Init(), ns3::Ipv6AddressGenerator::Init(), ns3::Ipv4AddressGenerator::InitAddress(), ns3::Ipv6AddressGenerator::InitAddress(), ns3::GlobalRouteManager::InitializeRoutes(), ns3::Ipv4AddressGenerator::IsAddressAllocated(), ns3::Ipv6AddressGenerator::IsAddressAllocated(), ns3::Ipv4AddressGenerator::IsNetworkAllocated(), ns3::Ipv6AddressGenerator::IsNetworkAllocated(), ns3::Ipv4AddressGenerator::NextAddress(), ns3::Ipv6AddressGenerator::NextAddress(), ns3::Ipv4AddressGenerator::NextNetwork(), ns3::Ipv6AddressGenerator::NextNetwork(), ns3::Ipv4AddressGenerator::Reset(), ns3::Ipv6AddressGenerator::Reset(), ns3::Ipv4AddressGenerator::TestMode(), and ns3::Ipv6AddressGenerator::TestMode().
|
staticprivate |
Get the singleton object, creating a new one if it doesn't exist yet.
Definition at line 98 of file simulation-singleton.h.
References ns3::Simulator::ScheduleDestroy().
|
delete |