Bug 202 - a lot of classes have disapeared from the doxygen class list
: a lot of classes have disapeared from the doxygen class list
Status: RESOLVED FIXED
: ns-3
documentation
: pre-release
: All All
: P3 normal
Assigned To:
:
:
:
:
  Show dependency treegraph
 
Reported: 2008-06-04 11:31 EDT by
Modified: 2008-07-01 13:32 EDT (History)


Attachments


Note

You need to log in before you can comment on or make changes to this bug.


Description From 2008-06-04 11:31:22 EDT
ns3::Packet is not there anymore. ns3::Socket is not there either.
------- Comment #1 From 2008-06-04 14:30:59 EDT -------
These seem to come from using the \defgroup tag from the class definition.

For example, the patch below seem to make the Socket class be documented
properly again.

diff -r 8c4fcd2a187d src/node/socket.h
--- a/src/node/socket.h Wed Jun 04 11:01:01 2008 -0700
+++ b/src/node/socket.h Wed Jun 04 11:30:36 2008 -0700
@@ -39,7 +39,11 @@ class Packet;
 /**
  * \ingroup node
  * \defgroup socket Socket
+ */
+
+/**
  * \brief A low-level Socket API based loosely on the BSD Socket API.
+ * \ingroup socket
  *
  * A few things to keep in mind about this type of socket:
  * - it uses ns-3 API constructs such as class ns3::Address instead of
------- Comment #2 From 2008-06-04 14:48:46 EDT -------
changeset: f61c17b62fd1