Skip to content

Commit

Permalink
added group attribute to <sensor> tag
Browse files Browse the repository at this point in the history
  • Loading branch information
rhaschke committed Sep 7, 2018
1 parent ec55e6b commit 4b97f96
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions urdf_sensor/include/urdf_sensor/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ class Sensor
/// sensor name must be unique
std::string name_;

/// optional group name
std::string group_;

/// update rate in Hz
double update_rate_;

Expand All @@ -81,6 +84,7 @@ class Sensor
void clear()
{
name_.clear();
group_.clear();
parent_link_.clear();
origin_.clear();
sensor_.reset();
Expand Down

0 comments on commit 4b97f96

Please sign in to comment.