fix dox warning

This commit is contained in:
Mathieu Lacage
2007-08-08 12:34:18 +02:00
parent aceebd88bb
commit 32cd28829a
4 changed files with 6 additions and 8 deletions

View File

@@ -358,7 +358,7 @@ private:
/**
* \ingroup MakeCallback
* \param mem_ptr class method member pointer
* \param memPtr class method member pointer
* \param objPtr class instance
* \return a wrapper Callback
* Build Callbacks for class method members which takes no arguments

View File

@@ -772,6 +772,7 @@ public:
/**
* \param s Low end of the range
* \param l High end of the range
* \param mean mean of the distribution
* \return A triangularly distributed random number between s and l
*/
static double GetSingleValue(double s, double l, double mean);

View File

@@ -116,7 +116,7 @@ public:
* (bitwise and) with a network mask, yielding an IPv4 network
* address.
*
* \param a network mask
* \param mask a network mask
*/
Ipv4Address CombineMask (Ipv4Mask const &mask) const;

View File

@@ -58,9 +58,7 @@ class Scheduler {
virtual ~Scheduler () = 0;
/**
* \param event event to store in the event list
* \param key timecode associated to this new event
* \returns an event id which identifies the event inserted
* \param id event to store in the event list
*
* This method takes ownership of the event pointer.
*/
@@ -83,9 +81,8 @@ class Scheduler {
virtual EventId RemoveNext (void) = 0;
/**
* \param id the id of the event to remove
* \param key the timecode of the event removed
* \returns a pointer to the event removed. The caller
* takes ownership of the returned pointer.
* \returns true if the id was found and removed
* successfully, false otherwise.
*
* This methods cannot be invoked if the list is empty.
*/