FluxioTypeIdentificator.cpp
Go to the documentation of this file.
2
4
5#include <RobotAPI/interface/skills/SkillManagerInterface.h>
6#include <RobotAPI/libraries/skills/core/aron/FluxioTypeIdentificator.aron.generated.h>
7
8namespace armarx
9{
10 namespace skills
11 {
12 manager::dto::FluxioTypeIdentificator
14 {
15 manager::dto::FluxioTypeIdentificator ret;
16
17 ret.skillId = skillId;
18 ret.parameterId = parameterId;
19
20 return ret;
21 }
22
23 manager::arondto::FluxioTypeIdentificator
25 {
26 manager::arondto::FluxioTypeIdentificator ret;
27
28 ret.skillId = skillId;
29 ret.parameterId = parameterId;
30
31 return ret;
32 }
33
35 FluxioTypeIdentificator::FromIce(const manager::dto::FluxioTypeIdentificator& i)
36 {
38
39 ret.skillId = i.skillId;
40 ret.parameterId = i.parameterId;
41
42 return ret;
43 }
44
46 FluxioTypeIdentificator::FromAron(const manager::arondto::FluxioTypeIdentificator& i)
47 {
49
50 ret.skillId = i.skillId;
51 ret.parameterId = i.parameterId;
52
53 return ret;
54 }
55
56 } // namespace skills
57} // namespace armarx
This file is part of ArmarX.
This file offers overloads of toIce() and fromIce() functions for STL container types.
static FluxioTypeIdentificator FromAron(const manager::arondto::FluxioTypeIdentificator &i)
manager::arondto::FluxioTypeIdentificator toAron() const
static FluxioTypeIdentificator FromIce(const manager::dto::FluxioTypeIdentificator &i)
manager::dto::FluxioTypeIdentificator toManagerIce() const