merge
This commit is contained in:
@@ -30,7 +30,7 @@
|
||||
#define AODV_H
|
||||
|
||||
/**
|
||||
* \defgroup aodv AODV
|
||||
* \defgroup aodv AODV Routing
|
||||
*
|
||||
* This model implements the base specification of the Ad hoc on demand distance vector (AODV)
|
||||
* protocol. Implementation is based on RFC3561.
|
||||
|
||||
@@ -31,7 +31,7 @@ namespace ns3 {
|
||||
class Node;
|
||||
|
||||
/**
|
||||
* \defgroup bridge Bridge
|
||||
* \defgroup bridge Bridge Device
|
||||
*
|
||||
* \brief a virtual net device that bridges multiple LAN segments
|
||||
*
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* \defgroup click Click
|
||||
* \defgroup click Click Routing
|
||||
*
|
||||
* \section model Model
|
||||
*
|
||||
|
||||
@@ -27,7 +27,11 @@ namespace ns3 {
|
||||
|
||||
class ObjectVectorValue;
|
||||
|
||||
// This class is used internally by ConfigStore and GtkConfigStore.
|
||||
/**
|
||||
* \ingroup configstore
|
||||
*
|
||||
* This class is used internally by ConfigStore and GtkConfigStore.
|
||||
*/
|
||||
class AttributeIterator
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -7,6 +7,8 @@
|
||||
namespace ns3 {
|
||||
|
||||
/**
|
||||
* \defgroup configstore Config-Store
|
||||
*
|
||||
* \brief Store and load simulation attribute configuration
|
||||
*
|
||||
* While it is possible to generate a sample config file and lightly
|
||||
@@ -24,6 +26,11 @@ namespace ns3 {
|
||||
* configuration files where all the instances of the same parameter
|
||||
* are changed.
|
||||
*/
|
||||
|
||||
/**
|
||||
* \ingroup configstore
|
||||
*
|
||||
*/
|
||||
class ConfigStore : public ObjectBase
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -5,6 +5,10 @@
|
||||
|
||||
namespace ns3 {
|
||||
|
||||
/**
|
||||
* \ingroup configstore
|
||||
*
|
||||
*/
|
||||
class FileConfig
|
||||
{
|
||||
public:
|
||||
@@ -15,6 +19,10 @@ public:
|
||||
virtual void Attributes (void) = 0;
|
||||
};
|
||||
|
||||
/**
|
||||
* \ingroup configstore
|
||||
*
|
||||
*/
|
||||
class NoneFileConfig : public FileConfig
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -23,7 +23,9 @@
|
||||
namespace ns3 {
|
||||
|
||||
/**
|
||||
* \ingroup configstore
|
||||
* \brief A class that provides a GTK-based front end to ns3::ConfigStore
|
||||
*
|
||||
*/
|
||||
class GtkConfigStore
|
||||
{
|
||||
|
||||
@@ -47,6 +47,10 @@ struct ModelNode
|
||||
Ptr<Object> object;
|
||||
uint32_t index;
|
||||
};
|
||||
/**
|
||||
* \ingroup configstore
|
||||
*
|
||||
*/
|
||||
class ModelCreator : public AttributeIterator
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -7,6 +7,10 @@
|
||||
|
||||
namespace ns3 {
|
||||
|
||||
/**
|
||||
* \ingroup configstore
|
||||
*
|
||||
*/
|
||||
class RawTextConfigSave : public FileConfig
|
||||
{
|
||||
public:
|
||||
@@ -20,6 +24,10 @@ private:
|
||||
std::ofstream *m_os;
|
||||
};
|
||||
|
||||
/**
|
||||
* \ingroup configstore
|
||||
*
|
||||
*/
|
||||
class RawTextConfigLoad : public FileConfig
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -8,6 +8,10 @@
|
||||
|
||||
namespace ns3 {
|
||||
|
||||
/**
|
||||
* \ingroup configstore
|
||||
*
|
||||
*/
|
||||
class XmlConfigSave : public FileConfig
|
||||
{
|
||||
public:
|
||||
@@ -22,6 +26,10 @@ private:
|
||||
xmlTextWriterPtr m_writer;
|
||||
};
|
||||
|
||||
/**
|
||||
* \ingroup configstore
|
||||
*
|
||||
*/
|
||||
class XmlConfigLoad : public FileConfig
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -29,6 +29,13 @@
|
||||
namespace ns3 {
|
||||
|
||||
/**
|
||||
* \defgroup csmastarhelper CSMA Star Helper
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* \ingroup csmastarhelper
|
||||
*
|
||||
* \brief A helper to make it easier to create a star topology
|
||||
* with Csma links
|
||||
*/
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \defgroup CsmaModel CSMA Model
|
||||
* \defgroup CsmaModel CSMA Device
|
||||
*
|
||||
* \section CsmaModelOverview CSMA Model Overview
|
||||
*
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
#define DSDV_H_
|
||||
|
||||
/**
|
||||
* \defgroup dsdv DSDV
|
||||
* \defgroup dsdv DSDV Routing
|
||||
*
|
||||
* \brief Destination-Sequenced Distance Vector (DSDV) routing protocol is a pro-active, table-driven routing protocol
|
||||
* for MANETs developed by Charles E. Perkins and Pravin Bhagwat in 1994. It uses the hop count as metric in route
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \defgroup EmuModel Emulated Net Device Model
|
||||
* \defgroup EmuModel Emulated Device
|
||||
*
|
||||
* \section EmuModelOverview Emulated Net Device Model Overview
|
||||
*
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* \defgroup mesh Mesh
|
||||
* \defgroup mesh Mesh Device
|
||||
*
|
||||
* \brief MAC-layer mobile mesh networking.
|
||||
* \section MeshOverview Overview of Layer-2 Mesh networking protocols
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* \defgroup nixvectorrouting Nix-vector Routing
|
||||
* \defgroup nixvectorrouting Nix-Vector Routing
|
||||
*
|
||||
* \section model Model
|
||||
*
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
#define OLSR_H
|
||||
|
||||
/**
|
||||
* \defgroup olsr OLSR
|
||||
* \defgroup olsr OLSR Routing
|
||||
*
|
||||
* \section model Model
|
||||
*
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* \defgroup OpenFlowSwitchModel OpenFlow Switch Model
|
||||
* \defgroup OpenFlowSwitchModel OpenFlow Switch Device
|
||||
*
|
||||
* \section OpenFlowSwitchModelOverview OpenFlow Switch Model Overview
|
||||
*
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \defgroup PointToPointModel Point-to-Point Model
|
||||
* \defgroup PointToPointModel Point-to-Point Device
|
||||
*
|
||||
* \section PointToPointPointOverview Point-to-Point Model Overview
|
||||
*
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* \defgroup TapBridgeModel Tap Bridge Model
|
||||
* \defgroup TapBridgeModel Tap Bridge Device
|
||||
*
|
||||
* \section TapBridgeModelOverview TapBridge Model Overview
|
||||
*
|
||||
|
||||
@@ -35,7 +35,7 @@ class WifiPhy;
|
||||
class WifiMac;
|
||||
|
||||
/**
|
||||
* \defgroup wifi Wifi
|
||||
* \defgroup wifi Wifi Models
|
||||
*
|
||||
* This section documents the API of the ns-3 Wifi module. For a generic functional description, please refer to the ns-3 manual.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user