ardupilot/libraries/AP_DDS/Idl/builtin_interfaces/msg/Time.idl
arshPratap 63ed2c646e AP_DDS: Preserve folder structure and includes for IDL files
* Remove ALL local changes in IDL (it mirrors upstream)
* Convert to pathlib for more robust manipulation
* Added EOF newlines for all the other missing IDL files

Co-authored-by: Arsh Pratap <arshpratapofficial@gmail.com>
Signed-off-by: Ryan Friedman <ryanfriedman5410+github@gmail.com>
2023-04-14 12:05:14 +10:00

23 lines
659 B
Plaintext

// generated from rosidl_adapter/resource/msg.idl.em
// with input from builtin_interfaces/msg/Time.msg
// generated code does not contain a copyright notice
module builtin_interfaces {
module msg {
@verbatim (language="comment", text=
"This message communicates ROS Time defined here:" "\n"
"https://design.ros2.org/articles/clock_and_time.html")
struct Time {
@verbatim (language="comment", text=
"The seconds component, valid over all int32 values.")
int32 sec;
@verbatim (language="comment", text=
"The nanoseconds component, valid in the range [0, 10e9).")
uint32 nanosec;
};
};
};