#ifndef TOOL_H #define TOOL_H #include "incl.h" using namespace std; class tool { public: static string int2string( int i_int ); static int string2int( string s ); }; #endif