From 2141eb0c61ee5dbf8cc281c6dd77151e6290ff47 Mon Sep 17 00:00:00 2001 From: Dominik Meyer Date: Sat, 19 Feb 2022 12:28:19 +0100 Subject: [PATCH] FIX: fixed missing doxygen comment --- include/EventManager/Participant.hpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/EventManager/Participant.hpp b/include/EventManager/Participant.hpp index 6869943..1d7c5a7 100644 --- a/include/EventManager/Participant.hpp +++ b/include/EventManager/Participant.hpp @@ -160,6 +160,14 @@ */ Participant(); + /** + * @brief Method to set the Manager object + * + * This method is in general only used by the EventManager::Manager! + * Only use this method if you really know what you are doing! + * + * @param manager - the manager to set + */ void setManager(std::shared_ptr manager) { manager_=manager;_subscribe(EVENT_TYPE_SHUTDOWN);} /**