Update of /cvsroot/gcblue/gcb_wx/include/graphics
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2267
Modified Files:
tcFIFO.h
Log Message:
+ added ifdef MSV for #pragma once instruction
Index: tcFIFO.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcFIFO.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** tcFIFO.h 19 Oct 2003 17:46:01 -0000 1.2
--- tcFIFO.h 11 Apr 2004 21:42:02 -0000 1.3
***************
*** 18,28 ****
*/
! #if !defined _TCFIFO_H_
#define _TCFIFO_H_
#pragma once
! #include "wx/wx.h"
#include "wx/msw/private.h" // for MS Windows specific definitions
// FIFO for resource management, up to 64k elements (UINT16 id's)
--- 18,36 ----
*/
! #ifndef _TCFIFO_H_
#define _TCFIFO_H_
+ #if _MSC_VER > 1000
#pragma once
+ #endif // _MSC_VER > 1000
! #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 "gctypes.h"
// FIFO for resource management, up to 64k elements (UINT16 id's)
***************
*** 142,143 ****
--- 150,152 ----
#endif
+
|