CreOS SDK
The CreOS SDK allows you to interact with Avular robots
 
Loading...
Searching...
No Matches
duration.hpp
Go to the documentation of this file.
1
17class Duration {
18public:
19 // Duration defines a period between two time points.
20 // Messages of this datatype are of ROS Time following this design:
21 // https://design.ros2.org/articles/clock_and_time.html
22
23 // Seconds component, range is valid over any possible int32 value.
24 int32_t sec;
25
26 // Nanoseconds component in the range of [0, 10e9).
27 uint32_t nanosec;
28};
29} // namespace builtin_interfaces::msg
ROS message class definition for Duration.
Definition duration.hpp:17
message definitions of the builtin_interfaces package
Definition duration.hpp:8