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

Add DeviceBase::rtGetDeviceName

parent 1e2604ea
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,8 @@ namespace armarx
virtual ~DeviceBase() = default;
/// @return The Device's name
const std::string& getDeviceName() const;
/// @return The Device's name
const std::string& rtGetDeviceName() const;
//tags
/// @return Thes set of tags for this Device
const std::set<std::string>& getTags() const;
......@@ -71,6 +73,11 @@ namespace armarx
return deviceName;
}
inline const std::string& DeviceBase::rtGetDeviceName() const
{
return deviceName;
}
inline const std::set<std::string>& DeviceBase::getTags() const
{
return tags;
......
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