CHANGES.html
changeset 5507 915abd2b907b
parent 5497 d8b1b591839b
child 5526 d70ac1951ae4
equal deleted inserted replaced
5506:8a51fa38a4ee 5507:915abd2b907b
    60 can be found <a href="http://www.nsnam.org/bugzilla/show_bug.cgi?id=689"> 
    60 can be found <a href="http://www.nsnam.org/bugzilla/show_bug.cgi?id=689"> 
    61 here</a>.
    61 here</a>.
    62 </ul>
    62 </ul>
    63 
    63 
    64 <hr>
    64 <hr>
       
    65 <h1>Changes from ns-3.6 to ns-3.7</h1>
       
    66 
       
    67 <h2>Changes to existing API:</h2>
       
    68 <ul>
       
    69 <li><b>Simulator::SetScheduler</b>: this method now takes an ObjectFactory
       
    70 instead of an object pointer directly. Existing callers can trivially be
       
    71 updated to use this new method.<br>
       
    72 Before:
       
    73 <pre>
       
    74 Ptr&lt;Scheduler&gt; sched = CreateObject&lt;ListScheduler&gt; ();
       
    75 Simulator::SetScheduler (sched);
       
    76 </pre>
       
    77 After:
       
    78 <pre>
       
    79 ObjectFactory sched;
       
    80 sched.SetTypeId ("ns3::ListScheduler");
       
    81 Simulator::SetScheduler (sched);
       
    82 </pre>
       
    83 
       
    84 </ul>
       
    85 
       
    86 <hr>
    65 <h1>Changes from ns-3.5 to ns-3.6</h1>
    87 <h1>Changes from ns-3.5 to ns-3.6</h1>
    66 
    88 
    67 <h2>Changes to build system:</h2>
    89 <h2>Changes to build system:</h2>
    68 <ul>
    90 <ul>
    69 <li><b>A new test framework is provided with ns-3.6 that primarilay runs outside waf</b>
    91 <li><b>A new test framework is provided with ns-3.6 that primarilay runs outside waf</b>