Skip to content

Commit

Permalink
[ActionsPublisher] fix signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
sarthou committed Jun 26, 2024
1 parent 6551b1e commit 42483a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/mementar/API/mementar/ActionsPublisher.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ namespace mementar {
public:
explicit ActionsPublisher(const std::string& name = "");

void insert(const std::string& name, time_t start_stamp = time(nullptr), time_t end_stamp = 0);
void insert(const std::string& name, time_t start_stamp, time_t end_stamp = 0);
void insert(const std::string& name, const compat::mem_ros::Time& start_stamp = compat::mem_ros::Node::get().currentTime(), const compat::mem_ros::Time& end_stamp = compat::mem_ros::Time(0));

void insertEnd(const std::string& name, time_t end_stamp = time(nullptr));
void insertEnd(const std::string& name, time_t end_stamp);
void insertEnd(const std::string& name, const compat::mem_ros::Time& end_stamp = compat::mem_ros::Node::get().currentTime());

/// @brief Register a callback function to get notifications from the feeder.
Expand Down

0 comments on commit 42483a4

Please sign in to comment.