Skip to content
Snippets Groups Projects
Commit 6bc663ad authored by Fabian Tërnava's avatar Fabian Tërnava
Browse files

fixed default constructor for specialized skill

parent 19ef89f3
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ namespace armarx
virtual void notifyStopped();
virtual void notifyTimeoutReached();
/// Override this method with the actual implementation. The callback is for status updates to the calling instance to the calling instance
/// Override this method with the actual implementation. The callback is for status updates to the calling instance
virtual Status execute(const aron::data::DictPtr& params, const CallbackT& callback = [](const aron::data::DictPtr& returnValue) { (void) returnValue; });
/// Reset all parameters before starting a skill. Override if you have special members that needs to be resetted
......
......@@ -10,10 +10,10 @@ namespace armarx
class SpecializedSkill : public Skill
{
public:
SpecializedSkill();
using Skill::Skill;
virtual ~SpecializedSkill() = default;
/// Override this method with the actual implementation. The callback is for status updates to the calling instance to the calling instance
/// 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;
......
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