use crate::parsers::MessageParser;
mod definitions;
pub mod geometry_msgs;
pub mod rcl_interfaces;
pub mod scalar_parser;
pub mod sensor_msgs;
pub mod std_msgs;
pub mod tf2_msgs;
pub(crate) mod util;
pub trait Ros2MessageParser: MessageParser {
fn new(num_rows: usize) -> Self;
}