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

add return types to skill desc

parent 9c91c12c
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ module armarx
string description;
armarx::core::time::dto::Duration timeout;
aron::type::dto::AronObject acceptedType;
aron::type::dto::AronObject returndType;
aron::type::dto::AronObject returnType;
aron::data::dto::Dict rootProfileDefaults;
};
......
......@@ -117,14 +117,14 @@ module armarx
};
// Description of a skill, independant of a provider
// A skill is nothing but a executable thing, which can be executed on one or more 'robots' (empty means all)
// A skill is nothing but a executable thing, which can be executed
struct SkillDescription
{
SkillID skillId;
string description;
armarx::core::time::dto::Duration timeout;
aron::type::dto::AronObject acceptedType;
aron::type::dto::AronObject returndType;
aron::type::dto::AronObject returnType;
aron::data::dto::Dict rootProfileDefaults;
};
......
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