// **************************** ae_util::ae_util() { } // **************************** ae_util::~ae_util() { } /************************************************************ ************************************************************/ string ae_util::str_time( char * str_fmt ) { string sres; char str_res[100]; const time_t now = time(0); strftime( str_res, 100, str_fmt, localtime( &now ) ); sres = string(str_res); return sres; }