OMNeT++ Simulation Library  5.6.1
Modules
Here is a list of all modules:
[detail level 12]
 Simulation CoreClasses in this group, such as cSimpleModule or cMessage, are essential to writing OMNeT++ simulation models
 Simulation SupportClasses and other items in this group are important part of the simulation kernel, but they are not of primary interest to simulation model authors
 Container ClassesOMNeT++ provides container classes that are aware of the simulation kernel's ownership mechanism, and also make contents inspectable in runtime GUIs like Qtenv or Tkenv
 Simulation TimeThe simulation kernel and models use simtime_t to represent simulation time. simtime_t is an alias to the SimTime class that is 64-bit fixed-point representation with a globally shared exponent. This group describes simtime_t, SimTime, and related types and macros
 Random Number Generation
 Continuous DistributionsRandom variate generators for continuous distributions
 Discrete DistributionsRandom variate generators for discrete distributions
 Statistical Result CollectionThe primary way of recording statistics from simulations is by means of signals and declared statistics, i.e. using @statistic properties in NED files. However, the simulation library also provides some classes in case programmatic result collection is needed
 Canvas (2D Graphics)OMNeT++ provides a 2D figure-based drawing API. The central classes are cFigure and cCanvas
 OSG (3D Graphics)OMNeT++ provides support for 3D visualization of simulation scenes, with the help of the OpenSceneGraph and osgEarth libraries. Assemble an OSG scene and give it to a cOsgCanvas for visualization
 FSM SupportMacros and classes for writing Finite State Machines. An FSM is defined with the FSM_Switch() macro
 SignalsSimulation signals (or just signals) provide a way of publish-subscribe communication for models. Signals are represented by the type simsignal_t, are emitted on a module or channel using cComponent::emit(), and propagate up in the module tree. At any level, one may add listeners (cIListener) with cComponent::subscribe()
 Utility ClassesThis group is a collection of classes and functions that make it easier to write simulation models
 LoggingOMNeT++ provides a logging mechanism for models, with support for log levels, filtering, a configurable log prefix, and more
 WATCH MacrosWATCH macros make normal variables show up in Tkenv/Qtenv inspectors
 Registration MacrosMacros for registering various classes, functions and other extension items with the simulation kernel. Registration is necessary for allowing instantiation by class name and attaching meta-information
 Extension PointsClasses in this group provide a plugin mechanism that can be used to customize the functionality of the simulation kernel or the Envir user interface library
 Internal ClassesThe classes described here are used internally by the simulation kernel. They are normally of very little interest to the simulation programmer. Note that although these internal classes do have a documented API, they may change more often than other classes, simply because they are not used in simulation models and thus backwards compatibility is less important
 Parallel Simulation ExtensionClasses in this group belong to the parallel simulation feature. For more information, please see the separate Parallel Simulation API which is generated from the source files in src/sim/parsim directory