[Gcblue-commits] gcb_wx/src/database tcAirDBObject.cpp,1.9,1.10 tcBallisticDBObject.cpp,1.5,1.6 tcDB
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2004-11-02 04:24:07
|
Update of /cvsroot/gcblue/gcb_wx/src/database In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8917/src/database Modified Files: tcAirDBObject.cpp tcBallisticDBObject.cpp tcDBString.cpp tcDatabase.cpp tcDatabaseObject.cpp tcESMDBObject.cpp tcFixedDBObject.cpp tcFlightportDBObject.cpp tcGenericDBObject.cpp tcLauncherDBObject.cpp tcMissileDBObject.cpp tcRadarDBObject.cpp tcSensorDBObject.cpp tcSqlReader.cpp tcWeaponDBObject.cpp Log Message: A few more changes related to GDI+ replacement Index: tcBallisticDBObject.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/database/tcBallisticDBObject.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** tcBallisticDBObject.cpp 14 Sep 2004 02:01:46 -0000 1.5 --- tcBallisticDBObject.cpp 2 Nov 2004 04:23:55 -0000 1.6 *************** *** 33,36 **** --- 33,40 ---- #include "database/tcSqlReader.h" + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + using namespace std; Index: tcESMDBObject.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/database/tcESMDBObject.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** tcESMDBObject.cpp 8 Aug 2004 00:31:33 -0000 1.6 --- tcESMDBObject.cpp 2 Nov 2004 04:23:55 -0000 1.7 *************** *** 33,36 **** --- 33,39 ---- #include "CsvTranslator.h" + #ifdef _DEBUG + #define new DEBUG_NEW + #endif using namespace std; Index: tcRadarDBObject.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/database/tcRadarDBObject.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** tcRadarDBObject.cpp 9 Aug 2004 02:35:15 -0000 1.12 --- tcRadarDBObject.cpp 2 Nov 2004 04:23:55 -0000 1.13 *************** *** 34,37 **** --- 34,40 ---- #include <sstream> + #ifdef _DEBUG + #define new DEBUG_NEW + #endif namespace Database Index: tcSqlReader.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/database/tcSqlReader.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tcSqlReader.cpp 9 Aug 2004 02:35:15 -0000 1.2 --- tcSqlReader.cpp 2 Nov 2004 04:23:55 -0000 1.3 *************** *** 20,28 **** */ ! #include "tcSqlReader.h" #include "sqlite/sqlite_plus.h" #include <stdarg.h> namespace Database { --- 20,32 ---- */ ! #include "stdwx.h" #include "tcSqlReader.h" #include "sqlite/sqlite_plus.h" #include <stdarg.h> + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + namespace Database { Index: tcWeaponDBObject.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/database/tcWeaponDBObject.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** tcWeaponDBObject.cpp 9 Aug 2004 02:35:15 -0000 1.4 --- tcWeaponDBObject.cpp 2 Nov 2004 04:23:55 -0000 1.5 *************** *** 34,37 **** --- 34,41 ---- #include <sstream> + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + using namespace std; Index: tcFlightportDBObject.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/database/tcFlightportDBObject.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** tcFlightportDBObject.cpp 9 Aug 2004 02:35:15 -0000 1.5 --- tcFlightportDBObject.cpp 2 Nov 2004 04:23:55 -0000 1.6 *************** *** 32,35 **** --- 32,39 ---- #include <sstream> + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + using namespace std; Index: tcLauncherDBObject.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/database/tcLauncherDBObject.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** tcLauncherDBObject.cpp 9 Aug 2004 02:35:15 -0000 1.9 --- tcLauncherDBObject.cpp 2 Nov 2004 04:23:55 -0000 1.10 *************** *** 35,38 **** --- 35,42 ---- #include <sstream> + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + using namespace std; Index: tcGenericDBObject.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/database/tcGenericDBObject.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** tcGenericDBObject.cpp 9 Aug 2004 02:35:15 -0000 1.12 --- tcGenericDBObject.cpp 2 Nov 2004 04:23:55 -0000 1.13 *************** *** 37,40 **** --- 37,43 ---- #include <sstream> + #ifdef _DEBUG + #define new DEBUG_NEW + #endif using namespace std; Index: tcDatabase.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/database/tcDatabase.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** tcDatabase.cpp 1 Nov 2004 03:17:17 -0000 1.17 --- tcDatabase.cpp 2 Nov 2004 04:23:55 -0000 1.18 *************** *** 50,53 **** --- 50,57 ---- #include "sqlite/sqlite_plus.h" + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + using namespace std; Index: tcAirDBObject.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/database/tcAirDBObject.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** tcAirDBObject.cpp 9 Aug 2004 02:35:15 -0000 1.9 --- tcAirDBObject.cpp 2 Nov 2004 04:23:55 -0000 1.10 *************** *** 28,31 **** --- 28,35 ---- #include <sstream> + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + namespace Database { Index: tcSensorDBObject.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/database/tcSensorDBObject.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** tcSensorDBObject.cpp 9 Aug 2004 02:35:15 -0000 1.7 --- tcSensorDBObject.cpp 2 Nov 2004 04:23:55 -0000 1.8 *************** *** 34,37 **** --- 34,41 ---- #include <sstream> + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + using namespace std; Index: tcFixedDBObject.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/database/tcFixedDBObject.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** tcFixedDBObject.cpp 8 Aug 2004 00:31:33 -0000 1.6 --- tcFixedDBObject.cpp 2 Nov 2004 04:23:55 -0000 1.7 *************** *** 32,35 **** --- 32,39 ---- #include "database/tcSqlReader.h" + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + using namespace std; Index: tcDatabaseObject.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/database/tcDatabaseObject.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** tcDatabaseObject.cpp 9 Aug 2004 02:35:15 -0000 1.11 --- tcDatabaseObject.cpp 2 Nov 2004 04:23:55 -0000 1.12 *************** *** 38,41 **** --- 38,45 ---- #include "database/tcSqlReader.h" + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + namespace Database { Index: tcMissileDBObject.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/database/tcMissileDBObject.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** tcMissileDBObject.cpp 9 Aug 2004 02:35:15 -0000 1.10 --- tcMissileDBObject.cpp 2 Nov 2004 04:23:55 -0000 1.11 *************** *** 37,40 **** --- 37,44 ---- #include <sstream> + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + using namespace std; Index: tcDBString.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/database/tcDBString.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** tcDBString.cpp 8 Aug 2004 00:31:33 -0000 1.5 --- tcDBString.cpp 2 Nov 2004 04:23:55 -0000 1.6 *************** *** 25,28 **** --- 25,32 ---- #include "common/tcStream.h" + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + namespace Database { |