src/network/model/channel-list.cc
changeset 7182 5ecfee5d17de
parent 6823 a27f86fb4e55
child 7385 10beb0e53130
--- a/src/network/model/channel-list.cc	Fri May 13 14:57:10 2011 -0400
+++ b/src/network/model/channel-list.cc	Fri May 13 14:57:43 2011 -0400
@@ -47,7 +47,7 @@
   uint32_t GetNChannels (void);
 
   static Ptr<ChannelListPriv> Get (void);
-  
+
 private:
   static Ptr<ChannelListPriv> *DoGet (void);
   static void Delete (void);
@@ -66,7 +66,7 @@
                    ObjectVectorValue (),
                    MakeObjectVectorAccessor (&ChannelListPriv::m_channels),
                    MakeObjectVectorChecker<Channel> ())
-    ;
+  ;
   return tid;
 }
 
@@ -74,7 +74,7 @@
 ChannelListPriv::Get (void)
 {
   return *DoGet ();
-}  
+}
 
 Ptr<ChannelListPriv> *
 ChannelListPriv::DoGet (void)
@@ -103,7 +103,8 @@
 }
 
 ChannelListPriv::~ChannelListPriv ()
-{}
+{
+}
 void
 ChannelListPriv::DoDispose (void)
 {
@@ -125,7 +126,7 @@
   uint32_t index = m_channels.size ();
   m_channels.push_back (channel);
   return index;
-  
+
 }
 
 ChannelList::Iterator