ArvizSkillMixin.h
Go to the documentation of this file.
1#pragma once
2
3
4// Others
6
8{
10 {
12 std::string layerName;
13
14 ArvizSkillMixin(const armarx::viz::Client& a, const std::string& ln) :
15 arviz(a), layerName(ln)
16 {
17 }
18
19 void
21 {
22 auto l = arviz.layer(layerName);
23 arviz.commit(l);
24 }
25 };
26} // namespace armarx::skills::mixin
ArvizSkillMixin(const armarx::viz::Client &a, const std::string &ln)