doc/modules
author Mitch Watrous <watrous@u.washington.edu>
Tue, 10 May 2011 17:56:47 -0700
changeset 7149 87514e0d866b
parent 7147 71adbc0422a5
child 7233 be0d7443b4ff
permissions -rw-r--r--
Fix doxygen groups for some new modules
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2217
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
     1
/**
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
     2
 * @anchor modules_anchor
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
     3
 *
7147
71adbc0422a5 Fix more paths in the documentation
Mitch Watrous <watrous@u.washington.edu>
parents: 6736
diff changeset
     4
 * @defgroup core Core
71adbc0422a5 Fix more paths in the documentation
Mitch Watrous <watrous@u.washington.edu>
parents: 6736
diff changeset
     5
 * \brief The "core" module contains:
2217
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
     6
 *    - a time management class to hold a time and convert between various time units: ns3::Time 
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
     7
 *    - a scheduler base class used to implement new simulation event schedulers:       
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
     8
 *      ns3::Scheduler and ns3::SchedulerFactory 
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
     9
 *    - a simulator class used to create, schedule and cancel events: ns3::Simulator
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    10
 *    - a Functor class: ns3::Callback  
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    11
 *    - an os-independent interface to get access to the elapsed wall clock time: ns3::SystemWallClockMs 
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    12
 *    - a class to register regression tests with the test manager: ns3::Test and ns3::TestManager
3194
79dba133b5f8 update RELEASE_NOTES and a few other files
Tom Henderson <tomh@tomh.org>
parents: 3183
diff changeset
    13
 *    - debugging facilities: \ref logging, \ref assert
2217
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    14
 *    - \ref randomvariable
2963
40a70a2e1b70 fix some dox warnings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2891
diff changeset
    15
 *    - a base class for objects which need to support per-instance "attributes" and
40a70a2e1b70 fix some dox warnings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2891
diff changeset
    16
 *      trace sources: ns3::ObjectBase
2217
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    17
 *    - a base class for objects which need to support reference counting
2963
40a70a2e1b70 fix some dox warnings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2891
diff changeset
    18
 *      and dynamic object aggregation: ns3::Object
2217
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    19
 *    - a smart-pointer class ns3::Ptr designed to work together with ns3::Object
2963
40a70a2e1b70 fix some dox warnings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2891
diff changeset
    20
 *    - a configuration class used to set and control all attributes and trace sources
40a70a2e1b70 fix some dox warnings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2891
diff changeset
    21
 *      in a simulation: ns3::Config.
2217
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    22
 *
7147
71adbc0422a5 Fix more paths in the documentation
Mitch Watrous <watrous@u.washington.edu>
parents: 6736
diff changeset
    23
 * @defgroup network Network
71adbc0422a5 Fix more paths in the documentation
Mitch Watrous <watrous@u.washington.edu>
parents: 6736
diff changeset
    24
 * The "network" module contains: 
2217
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    25
 *    - a packet class to create and manipulate simulation packets: 
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    26
 *      ns3::Packet, ns3::Header,  and ns3::Trailer. This packet class 
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    27
 *      also supports per-packet ns3::Tag which are  globs of data 
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    28
 *      which can be attached to any packet.
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    29
 *    - a ns3::Node base class which should be subclassed by any new type of
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    30
 *      network Node.
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    31
 *    - models which abstract the MAC-layer from the IP layer protocols:
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    32
 *      ns3::NetDevice and ns3::Channel. 
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    33
 *    - models which abstract the application-layer API: ns3::Application,
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    34
 *      ns3::Socket, ns3::SocketFactory, and, ns3::Udp
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    35
 * 
7149
87514e0d866b Fix doxygen groups for some new modules
Mitch Watrous <watrous@u.washington.edu>
parents: 7147
diff changeset
    36
 * @defgroup devices Devices
87514e0d866b Fix doxygen groups for some new modules
Mitch Watrous <watrous@u.washington.edu>
parents: 7147
diff changeset
    37
 *
7147
71adbc0422a5 Fix more paths in the documentation
Mitch Watrous <watrous@u.washington.edu>
parents: 6736
diff changeset
    38
 * @defgroup internet Internet
2217
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    39
 * 
7147
71adbc0422a5 Fix more paths in the documentation
Mitch Watrous <watrous@u.washington.edu>
parents: 6736
diff changeset
    40
 * The "internet" module contains:
3260
8c0ab08144e6 bug 186: internet-node directory must be renamed to internet-stack
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3194
diff changeset
    41
 *    - an Ipv4 stack
6736
fa6d53fb98a5 Update some stale documentation in doc/ directory
Tom Henderson <tomh@tomh.org>
parents: 6472
diff changeset
    42
 *    - an Ipv6 stack
2217
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    43
 *    - an ARP module
3260
8c0ab08144e6 bug 186: internet-node directory must be renamed to internet-stack
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3194
diff changeset
    44
 *    - a UDP and a TCP implementation
2217
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    45
 *    
4673
36b78cddce4d fix doxygen errors
Tom Henderson <tomh@tomh.org>
parents: 3260
diff changeset
    46
 * @defgroup routing Routing
36b78cddce4d fix doxygen errors
Tom Henderson <tomh@tomh.org>
parents: 3260
diff changeset
    47
 *
2217
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    48
 * @defgroup applications Applications
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    49
 *
6472
54ce45443509 Mobility doxygen: all classes are documented and added to the mobility module. All public methods and fields should follow.
Pavel Boyko <boyko@iitp.ru>
parents: 6471
diff changeset
    50
 * @defgroup mobility Mobility
54ce45443509 Mobility doxygen: all classes are documented and added to the mobility module. All public methods and fields should follow.
Pavel Boyko <boyko@iitp.ru>
parents: 6471
diff changeset
    51
 *
2217
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    52
 * @defgroup constants Constants
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    53
 * @brief Constants you can change
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    54
 *
5945
6bbb0a2da4e7 Doxygen for check-style.py
Tom Henderson <tomh@tomh.org>
parents: 4673
diff changeset
    55
 * @defgroup utils Utils
6bbb0a2da4e7 Doxygen for check-style.py
Tom Henderson <tomh@tomh.org>
parents: 4673
diff changeset
    56
 * @brief The utils directory is for various programs and scripts related 
6bbb0a2da4e7 Doxygen for check-style.py
Tom Henderson <tomh@tomh.org>
parents: 4673
diff changeset
    57
 * to code coverage, test suites, style checking, and benchmarking.
3183
fc3b2e03e61e more doxygen
Tom Henderson <tomh@tomh.org>
parents: 2963
diff changeset
    58
 */