Skip to content

Commit

Permalink
added explanatory comment about ignored default parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
authaldo committed Aug 27, 2023
1 parent f22dcdc commit 8438d59
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions include/service_wrapper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,16 @@ struct FutureTimeoutContainer {
bool timeoutReached = false;
};

/**
* Utility class wrapping all the ROS related calls.
*/
class ServiceWrapper {
public:
/**
* Constructor.
* @param ignoreDefaultParameters_ Decides, whether the default parameters (like 'use_sim_time') are ignored
* within the visualization.
*/
explicit ServiceWrapper(bool ignoreDefaultParameters_ = true);

void terminate();
Expand Down

0 comments on commit 8438d59

Please sign in to comment.