You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should be able to get rid of the protected implementations of the following as well:
/**
* @brief Override to call implementations version of start command.
*
*/
virtual void _start() = 0;
/**
* @brief Override to call implementations version of clear command.
*
*/
virtual void _clear() = 0;
/**
* @brief Override to call implementations version of the reset command.
*
*/
virtual void _reset() = 0;
/**
* @brief Override to call implementations version of the hold command.
*
*/
virtual void _hold() = 0;
/**
* @brief Override to call implementations version of the unhold command.
*
*/
virtual void _unhold() = 0;
/**
* @brief Override to call implementations version of the suspend command.
*
*/
virtual void _suspend() = 0;
/**
* @brief Override to call implementations version of the unsuspend command.
*
*/
virtual void _unsuspend() = 0;
/**
* @brief Override to call implementations version of the stop command.
*
*/
virtual void _stop() = 0;
Replace
with
The text was updated successfully, but these errors were encountered: