Fix module names in documentation

This commit is contained in:
Mitch Watrous
2011-05-06 08:38:41 -07:00
parent 5e24c1491a
commit ccda4f247a
5 changed files with 21 additions and 17 deletions

View File

@@ -107,7 +107,7 @@ Global Unicast Routing API
The public API is very minimal. User scripts include the following:::
#include "ns3/helper-module.h"
#include "ns3/internet-module.h"
If the default InternetStackHelper is used, then an instance of global routing
will be aggregated to each node. After IP addresses are configured, the

View File

@@ -38,9 +38,12 @@ The actual code begins by loading module include files just as was done in the
::
#include "ns3/core-module.h"
#include "ns3/simulator-module.h"
#include "ns3/node-module.h"
#include "ns3/helper-module.h"
#include "ns3/network-module.h"
#include "ns3/csma-module.h"
#include "ns3/internet-module.h"
#include "ns3/point-to-point-module.h"
#include "ns3/applications-module.h"
#include "ns3/ipv4-global-routing-helper.h"
One thing that can be surprisingly useful is a small bit of ASCII art that
shows a cartoon of the network topology constructed in the example. You will
@@ -805,11 +808,12 @@ to the Wifi module and the mobility module which we will discuss below.
::
#include "ns3/core-module.h"
#include "ns3/simulator-module.h"
#include "ns3/node-module.h"
#include "ns3/helper-module.h"
#include "ns3/wifi-module.h"
#include "ns3/mobility-module.h"
#include "ns3/network-module.h"
#include "ns3/csma-module.h"
#include "ns3/internet-module.h"
#include "ns3/point-to-point-module.h"
#include "ns3/applications-module.h"
#include "ns3/ipv4-global-routing-helper.h"
The network topology illustration follows:

View File

@@ -220,9 +220,10 @@ The code proper starts with a number of include statements.
::
#include "ns3/core-module.h"
#include "ns3/simulator-module.h"
#include "ns3/node-module.h"
#include "ns3/helper-module.h"
#include "ns3/network-module.h"
#include "ns3/internet-module.h"
#include "ns3/point-to-point-module.h"
#include "ns3/applications-module.h"
To help our high-level script users deal with the large number of include
files present in the system, we group includes according to relatively large

View File

@@ -96,7 +96,6 @@ contribute to |ns3| like they have for ns-2:
<http://www.nsnam.org/wiki/index.php/Contributed_Code>`_ page, similar to ns-2's popular Contributed Code
`page
<http://nsnam.isi.edu/nsnam/index.php/Contributed_Code>`_;
* ``src/contrib`` directory (we will host your contributed code);
* Open `bug tracker
<http://www.nsnam.org/bugzilla>`_;
* |ns3| developers will gladly help potential contributors to get

View File

@@ -1339,10 +1339,10 @@ favorite editor. You should see some familiar looking code:
#include <fstream>
#include "ns3/core-module.h"
#include "ns3/common-module.h"
#include "ns3/simulator-module.h"
#include "ns3/node-module.h"
#include "ns3/helper-module.h"
#include "ns3/network-module.h"
#include "ns3/internet-module.h"
#include "ns3/point-to-point-module.h"
#include "ns3/applications-module.h"
using namespace ns3;