Skip to content
Snippets Groups Projects
Commit f47aa04f authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Add viz::Client::commitLayerContaining

parent b3112851
No related branches found
No related tags found
No related merge requests found
......@@ -80,6 +80,13 @@ namespace armarx::viz
topic->updateLayers(updates);
}
template<class...Ts>
void commitLayerContaining(std::string const& name, Ts&& ...elems)
{
auto l = layer(name);
l.add(std::forward<Ts>(elems)...);
commit(l);
}
private:
std::string componentName;
armarx::viz::TopicPrx topic;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment