#ifndef BOOST_REPLACEMENT_LEXICAL_CAST_H #define BOOST_REPLACEMENT_LEXICAL_CAST_H #include template T urdfLexicalCast(const char* txt) { double result = atof(txt); return result; }; #endif