Skip to content
Snippets Groups Projects
Commit eb6ea1a9 authored by Niklas Arlt's avatar Niklas Arlt
Browse files

Remove SkillDescription constructor because only aggregate constructor is...

Remove SkillDescription constructor because only aggregate constructor is used. Aggregate constructor is no longer available with this constructor declaration
parent b77ff884
No related branches found
No related tags found
1 merge request!282Jammy support
......@@ -4,11 +4,6 @@ namespace armarx
{
namespace skills
{
SkillDescription::SkillDescription(const std::string& name, const std::string& desc, const std::vector<std::string>& r, long timeoutMs, const aron::type::ObjectPtr& type, const aron::data::DictPtr& def) :
skillName(name), description(desc), robots(r), timeoutMs(timeoutMs), acceptedType(type), defaultParams(def)
{
}
provider::dto::SkillDescription SkillDescription::toIce() const
{
provider::dto::SkillDescription ret;
......
......@@ -20,9 +20,6 @@ namespace armarx
aron::type::ObjectPtr acceptedType = nullptr;
aron::data::DictPtr defaultParams = nullptr;
SkillDescription() = default;
SkillDescription(const std::string&, const std::string&, const std::vector<std::string>&, long, const aron::type::ObjectPtr&, const aron::data::DictPtr& = nullptr);
provider::dto::SkillDescription toIce() 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