NimbRo ROS Soccer Package
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
parse.h
1 //It is a modified version of https://github.com/ros/ros_comm/
2 // Author: Hafez Farazi <farazi@ais.uni-bonn.de>
3 #include <string>
4 #include "macros.h"
5 
6 namespace nimbro_relay
7 {
8 
9 // Strip any leading namespace qualification from a topic (or other kind
10 // of) ROS name
11 NIMBRO_RELAY_DECL bool getBaseName(const std::string& full_name, std::string& base_name);
12 
13 }