[Gcblue-commits] gcb_wx/include/graphics tcMapObject.h,1.2,1.3
Status: Alpha
Brought to you by:
ddcforge
|
From: Xavi <xr...@us...> - 2004-04-11 21:24:39
|
Update of /cvsroot/gcblue/gcb_wx/include/graphics In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28742 Modified Files: tcMapObject.h Log Message: + added ifdef MSV for #pragma once instruction + newline at the end of file Index: tcMapObject.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcMapObject.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tcMapObject.h 22 Dec 2003 02:32:37 -0000 1.2 --- tcMapObject.h 11 Apr 2004 21:10:57 -0000 1.3 *************** *** 24,31 **** #define _TCMAPOBJECT_H_ #pragma once ! #include "wx/wx.h" #include "wx/msw/private.h" // for MS Windows specific definitions #include "simmath.h" --- 24,38 ---- #define _TCMAPOBJECT_H_ + #if _MSC_VER > 1000 #pragma once + #endif ! #ifndef WX_PRECOMP ! #include "wx/wx.h" ! #ifdef WIN32 #include "wx/msw/private.h" // for MS Windows specific definitions + #endif // WIN32 + #endif // WX_PRECOMP + #include "simmath.h" *************** *** 86,88 **** }; ! #endif \ No newline at end of file --- 93,96 ---- }; ! #endif ! |