LambdaSkill.cpp
Go to the documentation of this file.
1#include "LambdaSkill.h"
2
3namespace armarx
4{
5 namespace skills
6 {
7
9 LambdaSkill::main()
10 {
11 TerminatedSkillStatus res = fun();
12
13 return {.status = res, .data = nullptr};
14 }
15 } // namespace skills
16} // namespace armarx
This file is part of ArmarX.
This file offers overloads of toIce() and fromIce() functions for STL container types.
A result struct for th main method of a skill.
Definition Skill.h:62