FIX: fixed missing doxygen comment

This commit is contained in:
Dominik Meyer 2022-02-19 12:28:19 +01:00
parent b79a67b596
commit 2141eb0c61
No known key found for this signature in database
GPG Key ID: B4C312B600606B64
1 changed files with 8 additions and 0 deletions

View File

@ -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<EventManager::Manager> manager) { manager_=manager;_subscribe(EVENT_TYPE_SHUTDOWN);}
/**