From 8d8a4725697426e4cfd91a30bf18e90f6522685c Mon Sep 17 00:00:00 2001 From: adrian Date: Wed, 4 Jul 2012 08:29:20 +0000 Subject: [PATCH] Added missing doxygen comments. git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1419 8c4709b5-6ec9-48aa-a5cd-a96041d1645a --- src/core/sal/EventManager.hpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/core/sal/EventManager.hpp b/src/core/sal/EventManager.hpp index f0ce768a..ca071228 100644 --- a/src/core/sal/EventManager.hpp +++ b/src/core/sal/EventManager.hpp @@ -93,8 +93,9 @@ public: */ void remove(BaseEvent* ev); /** - * Behaves like remove(BaseEvent) and additionally updates the provided - * iteration. + * Behaves like remove(BaseEvent*) and additionally updates the provided + * iterator. + * @param it the iterator pointing to the Event object to be removed * @return the updated iterator which will point to the next element */ iterator remove(iterator it); @@ -102,6 +103,9 @@ private: /** * Internal implementation of remove(iterator it) that allows * to skip the delete-list. + * @param it the iterator pointing to the Event object to be removed + * @param skip_deletelist \c true to skip the deletion of the Event object + * or \false to behave like \c remove(iterator) * @return the updated iterator which will point to the next element */ iterator m_remove(iterator it, bool skip_deletelist); @@ -115,6 +119,7 @@ public: * [X|1|2| ... |n] * ^ * \endcode + * @return iterator to the beginning */ iterator begin() { return (m_BufferList.begin()); } /** @@ -126,6 +131,7 @@ public: * [1|2| ... |n]X * ^ * \endcode + * @return iterator to the end */ iterator end() { return (m_BufferList.end()); } /**