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

Add layer deletion to ArViz client

parent 86909e30
No related branches found
No related tags found
No related merge requests found
......@@ -99,8 +99,15 @@ namespace armarx::viz
{
enqueueLayer(layerContaining(name, std::forward<Ts>(elems)...));
}
void enqueueDeleteLayer(std::string const& name)
{
auto l = layer(name);
l.data_.action = data::LayerAction::Layer_DELETE;
enqueueLayer(std::move(l));
}
// ////////////////////////////////////////////////////////////////// //
//commit
void commit(std::initializer_list<Layer> const& layers)
{
enqueueLayer(layers);
......@@ -120,10 +127,10 @@ namespace armarx::viz
}
template<class...Ts>
std::enable_if_t < (std::is_same_v<Layer, Ts>&& ...) >
commit(Ts const& ...layers)
void
commit(Ts&& ...ts)
{
(enqueueLayer(layers), ...);
(enqueueLayer(std::forward<Ts>(ts)), ...);
_topic->updateLayers(updates);
updates.clear();
}
......@@ -134,6 +141,12 @@ namespace armarx::viz
commit(layerContaining(name, std::forward<Ts>(elems)...));
}
void commitDeleteLayer(std::string const& name)
{
enqueueDeleteLayer(name);
commit();
}
const armarx::viz::TopicPrx& topic() const
{
return _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