rtps-fpga/src/ros2/example_interfaces/Int8MultiArray.idl
Greek 63ce5642de Add AddTwoInts ROS Service Implementation
A complete ROS service server and client implementation of the
example_interfaces AddTwoInts service is done, along with an acompaning
testbench.
2022-01-24 17:53:07 +01:00

26 lines
932 B
Plaintext

// generated from rosidl_adapter/resource/msg.idl.em
// with input from example_interfaces/msg/Int8MultiArray.msg
// generated code does not contain a copyright notice
#include "example_interfaces/msg/MultiArrayLayout.idl"
module example_interfaces {
module msg {
@verbatim (language="comment", text=
" This is an example of using complex datatypes." "\n"
" It is not recommended to use directly." "\n"
" To use a similar datastruct please define a custom message with appropriate semantic meaning.")
struct Int8MultiArray {
@verbatim (language="comment", text=
" Please look at the MultiArrayLayout message definition for" "\n"
" documentation on all multiarrays." "\n"
" specification of data layout")
example_interfaces::msg::MultiArrayLayout layout;
@verbatim (language="comment", text=
" array of data")
sequence<int8> data;
};
};
};