1
0
mirror of https://gitlab.com/obbart/universal_robots_ros_driver.git synced 2026-04-09 17:40:47 +02:00

moved helper method to private

This commit is contained in:
Tristan Schnell
2019-09-23 16:24:50 +02:00
parent 40106a8192
commit baf024f5d2

View File

@@ -97,6 +97,10 @@ public:
}
}
private:
URServer server_;
static const int32_t MULT_JOINTSTATE = 1000000;
template <typename T>
size_t append(uint8_t* buffer, T& val)
{
@@ -104,10 +108,6 @@ public:
std::memcpy(buffer, &val, s);
return s;
}
private:
URServer server_;
static const int32_t MULT_JOINTSTATE = 1000000;
};
} // namespace comm