--- a/doc/manual/source/attributes.rst Fri Mar 27 11:52:48 2015 -0700
+++ b/doc/manual/source/attributes.rst Fri Mar 27 11:58:58 2015 -0700
@@ -165,6 +165,7 @@
{
static TypeId tid = TypeId ("ns3::Node")
.SetParent<Object> ()
+ .SetGroupName ("Network")
.AddConstructor<Node> ()
.AddAttribute ("DeviceList",
"The list of devices associated to this Node.",
@@ -300,6 +301,7 @@
{
static TypeId tid = TypeId ("ns3::DropTailQueue")
.SetParent<Queue> ()
+ .SetGroupName ("Network")
.AddConstructor<DropTailQueue> ()
.AddAttribute ("MaxPackets",
"The maximum number of packets accepted by this DropTailQueue.",
--- a/doc/manual/source/new-models.rst Fri Mar 27 11:52:48 2015 -0700
+++ b/doc/manual/source/new-models.rst Fri Mar 27 11:58:58 2015 -0700
@@ -341,6 +341,7 @@
{
static TypeId tid = TypeId ("ns3::ErrorModel")
.SetParent<Object> ()
+ .SetGroupName ("Network")
;
return tid;
}
@@ -359,6 +360,7 @@
{
static TypeId tid = TypeId ("ns3::RateErrorModel")
.SetParent<ErrorModel> ()
+ .SetGroupName ("Network")
.AddConstructor<RateErrorModel> ()
;
return tid;
@@ -556,6 +558,7 @@
{
static TypeId tid = TypeId ("ns3::RateErrorModel")
.SetParent<ErrorModel> ()
+ .SetGroupName ("Network")
.AddConstructor<RateErrorModel> ()
...
--- a/doc/manual/source/random-variables.rst Fri Mar 27 11:52:48 2015 -0700
+++ b/doc/manual/source/random-variables.rst Fri Mar 27 11:58:58 2015 -0700
@@ -277,6 +277,7 @@
{
static TypeId tid = TypeId ("ns3::RandomPropagationDelayModel")
.SetParent<PropagationDelayModel> ()
+ .SetGroupName ("Propagation")
.AddConstructor<RandomPropagationDelayModel> ()
.AddAttribute ("Variable",
"The random variable which generates random delays (s).",