Update doxygen documentation

This commit is contained in:
Tim Schubert 2020-09-06 21:37:47 +02:00
parent 61b6fd7ea1
commit f17ff6abc6
38 changed files with 1023 additions and 124 deletions

View file

@ -28,19 +28,27 @@
#include "ns3/leo-orbit.h"
/**
* \brief Builds a node container of nodes with LEO positions using a list of
* orbit definitions.
*
* Adds orbits with from a file for each node.
* \file
* \ingroup leo
*/
namespace ns3
{
/**
* \ingroup leo
* \brief Builds a node container of nodes with LEO positions using a list of
* orbit definitions.
*
* Adds orbits with from a file for each node.
*/
class LeoOrbitNodeHelper
{
public:
/// constructor
LeoOrbitNodeHelper ();
/// destructor
virtual ~LeoOrbitNodeHelper ();
/**
@ -73,6 +81,7 @@ public:
void SetAttribute (std::string name, const AttributeValue &value);
private:
/// Factory for nodes
ObjectFactory m_nodeFactory;
};