Skip to content
Snippets Groups Projects
Commit 80c9d418 authored by Raphael's avatar Raphael
Browse files

rtSwitchLVL0Controller now has a doxygen comment

parent 89d83047
No related branches found
No related tags found
No related merge requests found
...@@ -245,6 +245,12 @@ namespace armarx ...@@ -245,6 +245,12 @@ namespace armarx
void rtDeactivateAssignedLVL1Controller(std::size_t index); void rtDeactivateAssignedLVL1Controller(std::size_t index);
void rtRunLVL0Controllers(); void rtRunLVL0Controllers();
/**
* @brief Hook for switching the lvl0 controller (this changes the controll mode)
* @param index The index of the lvl0 controller
* @param oldLVL0 The old lvl0 controller (will be deactivated)
* @param newLVL0 The new lvl0 controller (will be activated)
*/
virtual void rtSwitchLVL0Controller(std::size_t index, LVL0ControllerBase* oldLVL0, LVL0ControllerBase* newLVL0) = 0; virtual void rtSwitchLVL0Controller(std::size_t index, LVL0ControllerBase* oldLVL0, LVL0ControllerBase* newLVL0) = 0;
//checks (rt) //checks (rt)
virtual bool rtValidateLVL0ControllerSetup() const; virtual bool rtValidateLVL0ControllerSetup() const;
......
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