ros_nalgebra

Macro rosmsg_include

Source
macro_rules! rosmsg_include {
    ( $($ns:ident / $msg:ident),* $(,)?) => { ... };
}
Expand description

Use this macro instead of rosrust::rosmsg_include!() to generate impl From.

§Example

mod msg {
    ros_nalgebra::rosmsg_include!(nav_msgs/Odometry);
}