Skip to content
Snippets Groups Projects
Commit ef7c71b3 authored by Peter Albrecht's avatar Peter Albrecht
Browse files

Added documentation to MemoryCommunicatorBase

parent eba3754a
No related branches found
No related tags found
1 merge request!420Add documentation to skill memory gui
......@@ -9,7 +9,9 @@ namespace armarx::skills::gui
{
/*
* This is a convenience base class to prevent repeatedly putting the SkillManagerWrapper in
* every widget.
* every widget. All widgets communicating with the skill manager should be derived from this class.
*
* @see SkillManagerWrapper
*/
class MemoryCommunicatorBase
{
......@@ -19,7 +21,9 @@ namespace armarx::skills::gui
{
}
// The interface of the memory, used by the skill memory gui
/**
* @brief The pointer to the manager wrapper.
*/
std::shared_ptr<SkillManagerWrapper> memory;
};
} // namespace armarx::skills::gui
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment