doc/modules
author Marco Miozzo <marco.miozzo@cttc.es>
Mon, 17 Jun 2013 13:03:33 +0200
changeset 10090 7eb3d1dff7d4
parent 7271 73bb230b6d6c
child 9971 d31b6210afc8
permissions -rw-r--r--
merge
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
 *
7233
be0d7443b4ff Updated the modules doxygen page
Mitch Watrous <watrous@u.washington.edu>
parents: 7149
diff changeset
     4
 * @defgroup constructs C++ Constructs Used by All Modules
be0d7443b4ff Updated the modules doxygen page
Mitch Watrous <watrous@u.washington.edu>
parents: 7149
diff changeset
     5
 * \brief These are C++ constructs defined by the modules.
be0d7443b4ff Updated the modules doxygen page
Mitch Watrous <watrous@u.washington.edu>
parents: 7149
diff changeset
     6
 *
be0d7443b4ff Updated the modules doxygen page
Mitch Watrous <watrous@u.washington.edu>
parents: 7149
diff changeset
     7
 * @defgroup constants Constants
be0d7443b4ff Updated the modules doxygen page
Mitch Watrous <watrous@u.washington.edu>
parents: 7149
diff changeset
     8
 * @brief Constants you can change
be0d7443b4ff Updated the modules doxygen page
Mitch Watrous <watrous@u.washington.edu>
parents: 7149
diff changeset
     9
 *
be0d7443b4ff Updated the modules doxygen page
Mitch Watrous <watrous@u.washington.edu>
parents: 7149
diff changeset
    10
 * @defgroup utils Utils
be0d7443b4ff Updated the modules doxygen page
Mitch Watrous <watrous@u.washington.edu>
parents: 7149
diff changeset
    11
 * @brief The utils directory is for various programs and scripts related 
be0d7443b4ff Updated the modules doxygen page
Mitch Watrous <watrous@u.washington.edu>
parents: 7149
diff changeset
    12
 * to code coverage, test suites, style checking, and benchmarking.
be0d7443b4ff Updated the modules doxygen page
Mitch Watrous <watrous@u.washington.edu>
parents: 7149
diff changeset
    13
 *
7147
71adbc0422a5 Fix more paths in the documentation
Mitch Watrous <watrous@u.washington.edu>
parents: 6736
diff changeset
    14
 * @defgroup core Core
71adbc0422a5 Fix more paths in the documentation
Mitch Watrous <watrous@u.washington.edu>
parents: 6736
diff changeset
    15
 * \brief The "core" module contains:
2217
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    16
 *    - 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
    17
 *    - a scheduler base class used to implement new simulation event schedulers:       
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    18
 *      ns3::Scheduler and ns3::SchedulerFactory 
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    19
 *    - a simulator class used to create, schedule and cancel events: ns3::Simulator
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    20
 *    - a Functor class: ns3::Callback  
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    21
 *    - 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
    22
 *    - 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
    23
 *    - debugging facilities: \ref logging, \ref assert
2217
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    24
 *    - \ref randomvariable
2963
40a70a2e1b70 fix some dox warnings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 2891
diff changeset
    25
 *    - 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
    26
 *      trace sources: ns3::ObjectBase
2217
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    27
 *    - 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
    28
 *      and dynamic object aggregation: ns3::Object
2217
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    29
 *    - 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
    30
 *    - 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
    31
 *      in a simulation: ns3::Config.
2217
0b4567d545de Doxygen organization
Tom Henderson <tomh@tomh.org>
parents:
diff changeset
    32
 *
3183
fc3b2e03e61e more doxygen
Tom Henderson <tomh@tomh.org>
parents: 2963
diff changeset
    33
 */