From 5c2fc37748191ee924dc15222cc241e4ef649fd1 Mon Sep 17 00:00:00 2001 From: Christina Sander Date: Tue, 30 Aug 2022 15:12:31 +0200 Subject: [PATCH] ADD: Adds comment to processConnections_ class function of the manager --- include/EventManager/Manager.hpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/include/EventManager/Manager.hpp b/include/EventManager/Manager.hpp index a1be6a3..7ba77b6 100644 --- a/include/EventManager/Manager.hpp +++ b/include/EventManager/Manager.hpp @@ -103,7 +103,14 @@ */ void processEvent(const std::shared_ptr event); - + /** + * @brief adds the queued participants to the list of connected participants + * + * The connectionQueue_ contains the participants that should be connected to + * the manager. All connected participants are stored in the list participants_. + * This class function adds the queued participants to the list participants_ + * and removes them from the queue. + */ void processConnections_(); /**