src/network/model/channel-list.cc
changeset 11238 96b5da288844
parent 10968 2d29fee2b7b8
equal deleted inserted replaced
11237:77e2228781ac 11238:96b5da288844
   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   ;