[Ipstream-devel] IPSocket/Tracer tracer.cpp,1.7,1.8
Status: Beta
Brought to you by:
kontramot
|
From: Sergey V. B. <kon...@us...> - 2010-03-17 06:55:17
|
Update of /cvsroot/ipstream/IPSocket/Tracer In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv29082/Tracer Modified Files: tracer.cpp Log Message: .h changed on c Index: tracer.cpp =================================================================== RCS file: /cvsroot/ipstream/IPSocket/Tracer/tracer.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** tracer.cpp 17 Mar 2010 06:45:48 -0000 1.7 --- tracer.cpp 17 Mar 2010 06:55:06 -0000 1.8 *************** *** 20,26 **** // For localtime and time ! #include <time.h> ! #include <string.h> // For config file reading --- 20,32 ---- // For localtime and time ! #include <ctime> ! #include <cstring> ! ! // For atoi ! #include <cstdlib> ! ! // For va_start, va_list and va_end ! #include <cstdarg> // For config file reading *************** *** 31,40 **** #include "boost_adopt/boost_adopt.h" - // For atoi - #include <cstdlib> - - // For va_start, va_list and va_end - #include <cstdarg> - // For access and chdir functions #ifdef _WIN32 --- 37,40 ---- |