Fix angle braces in CHANGES.html.
authorAndrey Mazo <mazo@iitp.ru>
Wed, 23 Dec 2009 20:49:08 +0300
changeset 5868 ed1e2ad4c0b9
parent 5867 8c65da328ae9
child 5870 ead6a3cd0212
Fix angle braces in CHANGES.html.
CHANGES.html
--- a/CHANGES.html	Mon Dec 21 16:07:08 2009 +0000
+++ b/CHANGES.html	Wed Dec 23 20:49:08 2009 +0300
@@ -56,7 +56,7 @@
 equal cost multipath for Ipv4GlobalRouting, and adds an attribute that
 can enable it with random packet distribution policy across equal cost routes.
 <li><b>Binding sockets to devices:</b> A method analogous to a SO_BINDTODEVICE
-socket option has been introduced to class Socket:  <pre>virtual void Socket::BindToNetDevice (Ptr<NetDevice> netdevice);</pre>
+socket option has been introduced to class Socket:  <pre>virtual void Socket::BindToNetDevice (Ptr&lt;NetDevice&gt; netdevice);</pre>
 <li><b>Simulator event contexts</b>: The Simulator API now keeps track of a per-event
 'context' (a 32bit integer which, by convention identifies a node by its id). Simulator::GetContext
 returns the context of the currently-executing event while Simulator::ScheduleWithContext creates an
@@ -168,7 +168,7 @@
 NodeContainer hubNode;
 NodeContainer spokeNodes;
 hubNode.Create (1);
-Ptr<Node> hub = hubNode.Get (0);
+Ptr&lt;Node&gt; hub = hubNode.Get (0);
 spokeNodes.Create (nNodes - 1);
 
 PointToPointHelper pointToPoint;
@@ -427,8 +427,8 @@
 <pre>
 -  static void EnablePcap (std::string filename, uint32_t nodeid, uint32_t deviceid);
 +         void EnablePcap (std::string filename, uint32_t nodeid, uint32_t deviceid);
--  static void EnablePcap (std::string filename, Ptr<NetDevice> nd);
-+         void EnablePcap (std::string filename, Ptr<NetDevice> nd);
+-  static void EnablePcap (std::string filename, Ptr&lt;NetDevice&gt; nd);
++         void EnablePcap (std::string filename, Ptr&lt;NetDevice&gt; nd);
 -  static void EnablePcap (std::string filename, std::string ndName);
 +         void EnablePcap (std::string filename, std::string ndName);
 -  static void EnablePcap (std::string filename, NetDeviceContainer d);