00001 #ifndef MY_CONVERSION_H 00002 #define MY_CONVERSION_H 00003 #include <string> 00004 00005 std::string int2str(int); 00006 bool str2int(std::string, int&); 00007 00008 #endif