first prototype of templated rcl, using non-templated middleware interface, implemented by connext using dynamic data
This commit is contained in:
parent
a226aecd96
commit
bcecf00928
13 changed files with 416 additions and 0 deletions
|
@ -0,0 +1,17 @@
|
|||
#ifndef __ros_middleware_interface__functions__h__
|
||||
#define __ros_middleware_interface__functions__h__
|
||||
|
||||
#include "rosidl_generator_cpp/MessageTypeSupport.h"
|
||||
|
||||
namespace ros_middleware_interface
|
||||
{
|
||||
|
||||
void * create_node();
|
||||
|
||||
void * create_publisher(void * node, const rosidl_generator_cpp::MessageTypeSupportMembers & members, const char * topic_name);
|
||||
|
||||
void publish(void * publisher, const void * ros_message);
|
||||
|
||||
}
|
||||
|
||||
#endif // __ros_middleware_interface__functions__h__
|
Loading…
Add table
Add a link
Reference in a new issue