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

Removed unused append method

This commit is contained in:
Jarek Potiuk
2018-02-04 23:48:51 +01:00
parent 8f5df0145f
commit 992c661e9e

View File

@@ -26,14 +26,6 @@ private:
std::string program_;
template <typename T>
size_t append(uint8_t *buffer, T &val)
{
size_t s = sizeof(T);
std::memcpy(buffer, &val, s);
return s;
}
bool execute(const std::array<double, 6> &positions,
const std::array<double, 6> &velocities,
double sample_number, double time_in_seconds);