[Doxygen] csma-layout module fixes
authorTommaso Pecorella <tommaso.pecorella@unifi.it>
Sun, 24 May 2015 00:58:38 +0200
changeset 11404 394ab1cce4a3
parent 11403 7cf39280d6f6
child 11405 d7ae2d81f13e
[Doxygen] csma-layout module fixes
src/csma-layout/model/csma-star-helper.h
src/mobility/model/geographic-positions.cc
--- a/src/csma-layout/model/csma-star-helper.h	Sun May 24 00:29:15 2015 +0200
+++ b/src/csma-layout/model/csma-star-helper.h	Sun May 24 00:58:38 2015 +0200
@@ -141,14 +141,14 @@
   void AssignIpv6Addresses (Ipv6Address network, Ipv6Prefix prefix);
 
 private:
-  NodeContainer m_hub;
-  NetDeviceContainer m_hubDevices;
-  NodeContainer m_spokes;
-  NetDeviceContainer m_spokeDevices;
-  Ipv4InterfaceContainer m_hubInterfaces;
-  Ipv4InterfaceContainer m_spokeInterfaces;
-  Ipv6InterfaceContainer m_hubInterfaces6;
-  Ipv6InterfaceContainer m_spokeInterfaces6;
+  NodeContainer m_hub;                        //!< NodeContainer for the hub node
+  NetDeviceContainer m_hubDevices;            //!< NetDeviceContainer for the hub node NetDevices
+  NodeContainer m_spokes;                     //!< NodeContainer for the spokes nodes
+  NetDeviceContainer m_spokeDevices;          //!< NetDeviceContainer for the spokes nodes NetDevices
+  Ipv4InterfaceContainer m_hubInterfaces;     //!< Ipv4InterfaceContainer for the hub IPv4 interfaces
+  Ipv4InterfaceContainer m_spokeInterfaces;   //!< Ipv4InterfaceContainer for the spokes IPv4 interfaces
+  Ipv6InterfaceContainer m_hubInterfaces6;    //!< Ipv6InterfaceContainer for the hub IPv6 interfaces
+  Ipv6InterfaceContainer m_spokeInterfaces6;  //!< Ipv6InterfaceContainer for the spokes IPv6 interfaces
 };
 
 } // namespace ns3
--- a/src/mobility/model/geographic-positions.cc	Sun May 24 00:29:15 2015 +0200
+++ b/src/mobility/model/geographic-positions.cc	Sun May 24 00:58:38 2015 +0200
@@ -26,7 +26,7 @@
 
 namespace ns3 {
 
-// earth's radius in meters if modeled as a perfect sphere
+/// Earth's radius in meters if modeled as a perfect sphere
 static const double EARTH_RADIUS = 6371e3; 
 
 /**