MoveJointsWithVelocity.cpp
Go to the documentation of this file.
2 
4 
5 namespace armarx::skills
6 {
7 
8  SkillDescription MoveJointsWithVelocity::Description = skills::SkillDescription{
9  "MoveJointsWithVelocity",
10  "Move the joints with velocity",
11  {},
13  joint_control::arondto::MoveJointsWithVelocityAcceptedType::ToAronType()};
14 
16  JointControlSkillContext& context) :
17  JointControlSkill(mns, context), SimpleSpecializedSkill<ArgType>(Description)
18  {
19  }
20 
22  MoveJointsWithVelocity::main(const SpecializedMainInput& in)
23  {
24  return {TerminatedSkillStatus::Failed, nullptr};
25  }
26 } // namespace armarx::skills
armarx::skills::JointControlSkill
Definition: JointControlSkill.h:62
armarx::skills
This file is part of ArmarX.
Definition: PeriodicUpdateWidget.cpp:11
armarx::skills::MoveJointsWithVelocity::MoveJointsWithVelocity
MoveJointsWithVelocity(armem::client::MemoryNameSystem &mns, JointControlSkillContext &context)
Definition: MoveJointsWithVelocity.cpp:15
armarx::skills::JointControlSkillContext
Definition: JointControlSkill.h:48
armarx::skills::SimpleSpecializedSkill
Definition: SimpleSpecializedSkill.h:10
armarx::skills::Skill::MainResult
A result struct for th main method of a skill.
Definition: Skill.h:39
JointControlUtil.h
armarx::skills::TerminatedSkillStatus::Failed
@ Failed
armarx::skills::MoveJointsWithVelocity::Description
static SkillDescription Description
Definition: MoveJointsWithVelocity.h:47
armarx::skills::SimpleSpecializedSkill< joint_control::arondto::MoveJointsWithVelocityAcceptedType >::main
Skill::MainResult main() final
Definition: SimpleSpecializedSkill.h:71
armarx::armem::client::MemoryNameSystem
The memory name system (MNS) client.
Definition: MemoryNameSystem.h:68
armarx::skills::MoveJointsWithVelocity::ArgType
joint_control::arondto::MoveJointsWithVelocityAcceptedType ArgType
Definition: MoveJointsWithVelocity.h:38
MoveJointsWithVelocity.h
armarx::core::time::Duration::MilliSeconds
static Duration MilliSeconds(std::int64_t milliSeconds)
Constructs a duration in milliseconds.
Definition: Duration.cpp:48