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

added documentation for parser and higher level packages

This commit is contained in:
Lea Steffen
2019-04-09 15:40:23 +02:00
committed by Tristan Schnell
parent d32f66473e
commit 2f0b8eae1a
4 changed files with 36 additions and 0 deletions

View File

@@ -35,9 +35,16 @@ namespace ur_driver
{
namespace rtde_interface
{
/*!
* brief The RTDEPackage is solely an abstraction level.
* It inherits form the URPackage and is also a parent class for rtde_interface::TextMessage.
*/
class RTDEPackage : public comm::URPackage<PackageHeader>
{
public:
/*!
* \brief Creates a new RTDEPackage object.
*/
RTDEPackage() = default;
virtual ~RTDEPackage() = default;
};