CHANGES.html
changeset 5507 915abd2b907b
parent 5497 d8b1b591839b
child 5526 d70ac1951ae4
--- a/CHANGES.html	Thu Nov 12 13:02:55 2009 +0100
+++ b/CHANGES.html	Thu Nov 12 13:19:35 2009 +0100
@@ -62,6 +62,28 @@
 </ul>
 
 <hr>
+<h1>Changes from ns-3.6 to ns-3.7</h1>
+
+<h2>Changes to existing API:</h2>
+<ul>
+<li><b>Simulator::SetScheduler</b>: this method now takes an ObjectFactory
+instead of an object pointer directly. Existing callers can trivially be
+updated to use this new method.<br>
+Before:
+<pre>
+Ptr&lt;Scheduler&gt; sched = CreateObject&lt;ListScheduler&gt; ();
+Simulator::SetScheduler (sched);
+</pre>
+After:
+<pre>
+ObjectFactory sched;
+sched.SetTypeId ("ns3::ListScheduler");
+Simulator::SetScheduler (sched);
+</pre>
+
+</ul>
+
+<hr>
 <h1>Changes from ns-3.5 to ns-3.6</h1>
 
 <h2>Changes to build system:</h2>