Skip to content
Snippets Groups Projects
Commit 4ef7ef4a authored by Fabian Paus's avatar Fabian Paus
Browse files

ArViz: Special handling for GUI plugins

parent 281b9e87
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,20 @@ namespace armarx::viz
topic = component.getTopicFromProperty<decltype(topic)>(topicNameProperty);
}
static Client createForGuiPlugin(armarx::Component& component, std::string const& topicName = "ArVizTopic")
{
Client client;
std::string name = component.getName();
std::size_t dashPos = name.find('-');
if (dashPos != std::string::npos)
{
name = name.substr(0, dashPos);
}
client.componentName = name;
client.topic = component.getTopic<decltype(topic)>(topicName);
return client;
}
Layer layer(std::string const& name)
{
return Layer(componentName, name);
......
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