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

Removed uneeded pipeline.cpp

This commit is contained in:
Simon Rasmussen
2017-02-06 14:20:34 +01:00
parent c4c613c5e7
commit c7bee00cc1

View File

@@ -1,23 +0,0 @@
#include "ur_modern_driver/queue/readerwriterqueue.h"
using namespace moodycamel;
using namespace std;
class UR2ROSRelay {
private:
URReciever reciever;
URParser parser;
BlockingReaderWriterQueue<unique_ptr<URMessage>> queue;
ROSConverter converter;
ROSPublisher publisher;
public:
UR2ROSRelay(string &host, int port) : reciever{host, port} { }
void run() {
}
};