Skip to content
Snippets Groups Projects
Commit ea6ec318 authored by Fabian Reister's avatar Fabian Reister
Browse files

fix: _execute should be pure virtual

parent aa5aa243
No related branches found
No related tags found
No related merge requests found
......@@ -25,14 +25,8 @@ namespace armarx
}
/// Override this method with the actual implementation. The callback is for status updates to the calling instance
virtual Status _execute(const AronT& params, const CallbackT& callback = [](const aron::data::DictPtr& returnValue) { (void) returnValue; })
{
(void) params;
ARMARX_WARNING_S << "You have to override this method!";
return Status::Succeeded;
}
virtual Status _execute(const AronT& params, const CallbackT& callback = [](const aron::data::DictPtr& returnValue) { (void) returnValue; }) = 0;
/// Do not use anymore
Status _execute(const aron::data::DictPtr& params, const CallbackT& callback = [](const aron::data::DictPtr& returnValue) { (void) returnValue; }) final
{
......
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