[Gcblue-commits] gcb_wx/include/database tcESMDBObject.h,1.2,1.3 tcFixedDBObject.h,1.2,1.3 tcSensorD
Status: Alpha
Brought to you by:
ddcforge
|
From: Xavi <xr...@us...> - 2004-03-28 18:58:27
|
Update of /cvsroot/gcblue/gcb_wx/include/database In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9889 Modified Files: tcESMDBObject.h tcFixedDBObject.h tcSensorDBObject.h Log Message: + added ifdef MSV for #pragma once instruction Index: tcESMDBObject.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/database/tcESMDBObject.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tcESMDBObject.h 7 Dec 2003 01:53:36 -0000 1.2 --- tcESMDBObject.h 28 Mar 2004 18:47:07 -0000 1.3 *************** *** 23,27 **** --- 23,29 ---- #define _ESMDBOBJECT_H_ + #if _MSC_VER > 1000 #pragma once + #endif // _MSC_VER > 1000 #include "tcSensorDBObject.h" *************** *** 46,48 **** } // namespace Database ! #endif \ No newline at end of file --- 48,51 ---- } // namespace Database ! #endif ! Index: tcSensorDBObject.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/database/tcSensorDBObject.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tcSensorDBObject.h 7 Dec 2003 01:53:36 -0000 1.2 --- tcSensorDBObject.h 28 Mar 2004 18:47:07 -0000 1.3 *************** *** 23,27 **** --- 23,29 ---- #define _SENSORDBOBJECT_H_ + #if _MSC_VER > 1000 #pragma once + #endif // _MSC_VER > 1000 #include "tcDatabaseObject.h" *************** *** 48,50 **** } // namespace Database ! #endif \ No newline at end of file --- 50,53 ---- } // namespace Database ! #endif ! Index: tcFixedDBObject.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/database/tcFixedDBObject.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tcFixedDBObject.h 7 Dec 2003 01:53:36 -0000 1.2 --- tcFixedDBObject.h 28 Mar 2004 18:47:07 -0000 1.3 *************** *** 23,27 **** --- 23,29 ---- #define _FIXEDDBOBJECT_H_ + #if _MSC_VER > 1000 #pragma once + #endif // _MSC_VER > 1000 #include "tcDatabaseObject.h" *************** *** 45,47 **** } // namespace Database ! #endif \ No newline at end of file --- 47,50 ---- } // namespace Database ! #endif ! |