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

Adopted roscpp code style and naming convention

This commit is contained in:
Simon Rasmussen
2017-03-01 13:59:48 +01:00
parent e4bc40fc09
commit 474f469e97
44 changed files with 5097 additions and 4891 deletions

View File

@@ -1,10 +1,11 @@
#pragma once
#include <vector>
#include "ur_modern_driver/bin_parser.h"
#include "ur_modern_driver/pipeline.h"
#include <vector>
template <typename T>
class URParser {
class URParser
{
public:
virtual bool parse(BinParser& bp, std::vector<std::unique_ptr<T> >& results) = 0;
virtual bool parse(BinParser& bp, std::vector<std::unique_ptr<T>>& results) = 0;
};