equal
deleted
inserted
replaced
106 TypeId |
106 TypeId |
107 ChannelListPriv::GetTypeId (void) |
107 ChannelListPriv::GetTypeId (void) |
108 { |
108 { |
109 static TypeId tid = TypeId ("ns3::ChannelListPriv") |
109 static TypeId tid = TypeId ("ns3::ChannelListPriv") |
110 .SetParent<Object> () |
110 .SetParent<Object> () |
|
111 .SetGroupName("Network") |
111 .AddAttribute ("ChannelList", "The list of all channels created during the simulation.", |
112 .AddAttribute ("ChannelList", "The list of all channels created during the simulation.", |
112 ObjectVectorValue (), |
113 ObjectVectorValue (), |
113 MakeObjectVectorAccessor (&ChannelListPriv::m_channels), |
114 MakeObjectVectorAccessor (&ChannelListPriv::m_channels), |
114 MakeObjectVectorChecker<Channel> ()) |
115 MakeObjectVectorChecker<Channel> ()) |
115 ; |
116 ; |