1
0
mirror of https://gitlab.com/obbart/universal_robots_ros_driver.git synced 2026-04-10 10:00:48 +02:00

Renamed Safe Trajectory Follower to Low Bandwidth one

This commit is contained in:
Jarek Potiuk
2018-01-14 21:04:41 +01:00
parent 5dcef72415
commit a54b97e939
7 changed files with 33 additions and 32 deletions

View File

@@ -13,7 +13,7 @@
#include "ur_modern_driver/ur/server.h"
#include "ur_modern_driver/ros/trajectory_follower_interface.h"
class SafeTrajectoryFollower: public TrajectoryFollowerInterface
class LowBandwidthTrajectoryFollower: public TrajectoryFollowerInterface
{
private:
std::atomic<bool> running_;
@@ -40,11 +40,11 @@ private:
double sample_number, double time_in_seconds);
public:
SafeTrajectoryFollower(URCommander &commander, std::string &reverse_ip, int reverse_port, bool version_3);
LowBandwidthTrajectoryFollower(URCommander &commander, std::string &reverse_ip, int reverse_port, bool version_3);
bool start();
bool execute(std::vector<TrajectoryPoint> &trajectory, std::atomic<bool> &interrupt);
void stop();
virtual ~SafeTrajectoryFollower() {};
virtual ~LowBandwidthTrajectoryFollower() {};
};