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 
8 namespace 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
armarx::aron::ret
ReaderT::InputType T & ret
Definition: rw.h:13
skills
This file is part of ArmarX.
armarx::skills::FluxioTypeIdentificator
Definition: FluxioTypeIdentificator.h:10
armarx::skills::FluxioTypeIdentificator::FromAron
static FluxioTypeIdentificator FromAron(const manager::arondto::FluxioTypeIdentificator &i)
Definition: FluxioTypeIdentificator.cpp:46
armarx::skills::FluxioTypeIdentificator::skillId
std::string skillId
Definition: FluxioTypeIdentificator.h:13
armarx::skills::FluxioTypeIdentificator::parameterId
std::string parameterId
Definition: FluxioTypeIdentificator.h:14
armarx::skills::FluxioTypeIdentificator::FromIce
static FluxioTypeIdentificator FromIce(const manager::dto::FluxioTypeIdentificator &i)
Definition: FluxioTypeIdentificator.cpp:35
armarx::skills::FluxioTypeIdentificator::toAron
manager::arondto::FluxioTypeIdentificator toAron() const
Definition: FluxioTypeIdentificator.cpp:24
Logging.h
armarx::skills::FluxioTypeIdentificator::toManagerIce
manager::dto::FluxioTypeIdentificator toManagerIce() const
Definition: FluxioTypeIdentificator.cpp:13
FluxioTypeIdentificator.h
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27