[Gcblue-commits] gcb_wx/src/database tcDBString.cpp,1.1,1.2 tcSensorDBObject.cpp,1.2,1.3 CsvTranslat
Status: Alpha
Brought to you by:
ddcforge
|
From: Xavi <xr...@us...> - 2004-03-28 19:04:23
|
Update of /cvsroot/gcblue/gcb_wx/src/database In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11050 Modified Files: tcDBString.cpp tcSensorDBObject.cpp CsvTranslator.cpp Log Message: newline at the end of file Index: CsvTranslator.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/database/CsvTranslator.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CsvTranslator.cpp 14 Dec 2003 20:58:47 -0000 1.3 --- CsvTranslator.cpp 28 Mar 2004 18:53:03 -0000 1.4 *************** *** 24,28 **** --- 24,31 ---- */ + #if _MSC_VER > 1000 #pragma warning(disable:4786) // suppress warning for STL bug in VC6, see Q167355 in the MSDN Library. + #endif // _MSC_VER > 1000 + #include "CsvTranslator.h" Index: tcSensorDBObject.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/database/tcSensorDBObject.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tcSensorDBObject.cpp 7 Dec 2003 01:53:36 -0000 1.2 --- tcSensorDBObject.cpp 28 Mar 2004 18:53:03 -0000 1.3 *************** *** 22,31 **** #include "stdwx.h" #pragma warning(disable:4786) // suppress warning for STL bug in VC6, see Q167355 in the MSDN Library. #include "tcSensorDBObject.h" #include "math_constants.h" #include "randfn.h" ! //#include "aerror.h" #include "CsvTranslator.h" --- 22,33 ---- #include "stdwx.h" + #if _MSC_VER > 1000 #pragma warning(disable:4786) // suppress warning for STL bug in VC6, see Q167355 in the MSDN Library. + #endif // _MSC_VER > 1000 #include "tcSensorDBObject.h" #include "math_constants.h" #include "randfn.h" ! //#include "AError.h" #include "CsvTranslator.h" *************** *** 120,122 **** } ! } \ No newline at end of file --- 122,125 ---- } ! } ! Index: tcDBString.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/database/tcDBString.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** tcDBString.cpp 30 Nov 2003 17:23:53 -0000 1.1 --- tcDBString.cpp 28 Mar 2004 18:53:03 -0000 1.2 *************** *** 150,152 **** } ! } \ No newline at end of file --- 150,153 ---- } ! } ! |