2008-01-10 07:31:40 -08:00
|
|
|
/**
|
|
|
|
|
* @anchor modules_anchor
|
|
|
|
|
*
|
2011-05-17 17:36:08 -07:00
|
|
|
* @defgroup constants Constants
|
|
|
|
|
* @brief Constants you can change
|
|
|
|
|
*
|
|
|
|
|
* @defgroup utils Utils
|
|
|
|
|
* @brief The utils directory is for various programs and scripts related
|
|
|
|
|
* to code coverage, test suites, style checking, and benchmarking.
|
2014-03-10 10:57:50 -07:00
|
|
|
*/
|
|
|
|
|
/**
|
2011-05-10 11:09:17 -07:00
|
|
|
* @defgroup core Core
|
|
|
|
|
* \brief The "core" module contains:
|
2014-03-10 10:57:50 -07:00
|
|
|
* - a time management class to hold a time and convert between various
|
|
|
|
|
* time units: ns3::Time
|
|
|
|
|
* - a scheduler base class used to implement new simulation event
|
|
|
|
|
* schedulers:
|
2008-01-10 07:31:40 -08:00
|
|
|
* ns3::Scheduler and ns3::SchedulerFactory
|
2014-03-10 10:57:50 -07:00
|
|
|
* - a simulator class used to create, schedule and cancel events:
|
|
|
|
|
* ns3::Simulator
|
2008-01-10 07:31:40 -08:00
|
|
|
* - a Functor class: ns3::Callback
|
2014-03-10 10:57:50 -07:00
|
|
|
* - an os-independent interface to get access to the elapsed wall clock
|
|
|
|
|
* time: ns3::SystemWallClockMs
|
|
|
|
|
* - a class to register regression tests with the test manager: ns3::Test
|
|
|
|
|
* and ns3::TestManager
|
|
|
|
|
* - debugging facilities: \ref debugging
|
2008-01-10 07:31:40 -08:00
|
|
|
* - \ref randomvariable
|
2014-03-10 10:57:50 -07:00
|
|
|
* - a base class for objects which need to support per-instance
|
|
|
|
|
* "attributes" and trace sources: ns3::ObjectBase
|
2008-01-10 07:31:40 -08:00
|
|
|
* - a base class for objects which need to support reference counting
|
2008-04-14 16:18:50 -07:00
|
|
|
* and dynamic object aggregation: ns3::Object
|
2014-03-10 10:57:50 -07:00
|
|
|
* - a smart-pointer class ns3::Ptr designed to work together with
|
|
|
|
|
* ns3::Object
|
|
|
|
|
* - a configuration class used to set and control all attributes and
|
|
|
|
|
* trace sources in a simulation: ns3::Config.
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* @ingroup core
|
|
|
|
|
* @defgroup debugging Debugging tools
|
2008-01-10 07:31:40 -08:00
|
|
|
*
|
2014-03-10 10:57:50 -07:00
|
|
|
* @brief Assertions, breakpoints, logging, and abnormal program termination
|
2008-05-30 10:36:02 -07:00
|
|
|
*/
|