Bugzilla – Bug 202
a lot of classes have disapeared from the doxygen class list
Last modified: 2008-07-01 13:32:35 UTC
ns3::Packet is not there anymore. ns3::Socket is not there either.
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
changeset: f61c17b62fd1