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

Implemented initial robot state and parsing

This commit is contained in:
Simon Rasmussen
2017-02-06 14:22:28 +01:00
parent c7bee00cc1
commit ffe2bbe96a
11 changed files with 586 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#pragma once
#include "ur_modern_driver/bin_parser.h"
class Packet {
public:
virtual bool parse_with(BinParser &bp) = 0;
};