before merge
This commit is contained in:
14
include/teleoperation/utils.hpp
Normal file
14
include/teleoperation/utils.hpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef _UTILS_HPP_
|
||||
#define _UTILS_HPP_
|
||||
|
||||
#include <sstream>
|
||||
|
||||
namespace {
|
||||
inline std::string int_to_str(int i) {
|
||||
std::ostringstream ss;
|
||||
ss << i;
|
||||
return ss.str();
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user