Skip to content
Snippets Groups Projects
Commit 8a764629 authored by armar-user's avatar armar-user
Browse files

Merge branch 'SecondHandsDemo2020' of gitlab.com:ArmarX/RobotAPI into SecondHandsDemo2020

parents 764d23fe a206bb86
No related branches found
No related tags found
No related merge requests found
......@@ -31,6 +31,15 @@ namespace armarx::viz
data_.elements.push_back(element.data_);
}
template <typename ElementT>
void add(std::vector<ElementT> const& elements)
{
for (const auto& e : elements)
{
add(e);
}
}
template<class...Ts>
std::enable_if_t < sizeof...(Ts) != 1 > add(Ts&& ...elems)
{
......
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