mirror of
https://gitlab.com/obbart/universal_robots_ros_driver.git
synced 2026-04-10 10:00:48 +02:00
12 lines
245 B
C++
12 lines
245 B
C++
#pragma once
|
|
#include <vector>
|
|
#include "ur_modern_driver/bin_parser.h"
|
|
#include "ur_modern_driver/pipeline.h"
|
|
|
|
template <typename T>
|
|
class URParser
|
|
{
|
|
public:
|
|
virtual bool parse(BinParser& bp, std::vector<std::unique_ptr<T>>& results) = 0;
|
|
};
|