Files
unison/doc/main.txt

59 lines
2.7 KiB
Plaintext
Raw Normal View History

2006-09-05 13:42:32 +02:00
/**
* \mainpage An Introduction to ns-3
*
* The ns-3 library is split across multiple modules:
* - core: located in src/core and contains a number of facilities which
* do not depend on any other module. Some of these facilities are
* OS-dependent.
* - simulator: located in src/simulator and contains event scheduling
* facilities.
* - common: located in src/common and contains facilities specific
* to network simulations but shared by pretty much every model
* of a network component.
2007-03-29 16:53:34 +02:00
* - node: located in src/node. Contains an ipv4/udp model.
* - devices: located in src/devices. Contains a set of MAC-level models
2006-09-05 13:42:32 +02:00
*
* The "core" module contains:
* - a Functor class: ns3::Callback
2006-09-06 14:08:13 +02:00
* - an os-independent interface to get access to the elapsed wall clock time: ns3::SystemWallClockMs
2006-09-05 13:42:32 +02:00
* - a class to register regression tests with the test manager: ns3::Test and ns3::TestManager
* - debugging facilities: \ref debugging, \ref assert, \ref error
* - \ref randomvariable
* - a class to handle automatic deletion of multiple sets of objects of different types:
* ns3::ObjectContainer
2006-09-05 13:42:32 +02:00
*
* The "simulator" module contains:
* - 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:
* ns3::Scheduler and ns3::SchedulerFactory
* - a simulator class used to create, schedule and cancel events: ns3::Simulator
*
* The "common" module contains:
2006-10-02 14:41:00 +02:00
* - a packet class to create and manipulate simulation packets: ns3::Packet, ns3::Header,
* and ns3::Trailer
2007-03-29 16:41:53 +02:00
* - a set of low-level trace facilities: \ref lowleveltracing
2007-03-29 16:53:34 +02:00
*
* The "node" module contains:
* - a ns3::Node base class and an ns3::InternetNode implementation which model
* network nodes.
* - a set of models contained in InternetNode: ns3::Ipv4, ns3::Udp, ns3::L3Demux,
* ns3::L3Protocol, ns3::Ipv4L4Demux, ns3::Ipv4L4Protocol, ns3::Ipv4Interface,
* ns3::DatagramSocket
* - models which abstract the MAC-layer from the IP layer protocols:
* ns3::NetDevice and ns3::Channel.
* - an Arp model if the underlying NetDevice object needs it: ns3::ArpIpv4Interface
* - a set of traffic generation models: ns3::OnOffApplication
*
* The "devices" module contains:
* - a PointToPoint MAC device: ns3::PointToPointNetDevice, ns3::PointToPointChannel,
* and ns3::PointToPointTopology.
2006-09-05 13:42:32 +02:00
*/
/**
* \namespace ns3
* \brief Every class exported by the ns3 library is enclosed in the
* ns3 namespace.
*/
/**
2007-03-30 12:37:02 +02:00
* \defgroup constants Constants
* \brief Constants you can change
*/