[Gcblue-commits] gcb_wx/include/network tcMultiplayerInterface.h,1.3,1.4
Status: Alpha
Brought to you by:
ddcforge
|
From: Xavi <xr...@us...> - 2004-04-04 21:06:43
|
Update of /cvsroot/gcblue/gcb_wx/include/network In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15086 Modified Files: tcMultiplayerInterface.h Log Message: + added ifdef MSV for #pragma once instruction + newline at the end of function + removed comma at the end of enum Index: tcMultiplayerInterface.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/network/tcMultiplayerInterface.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** tcMultiplayerInterface.h 6 Mar 2004 20:52:29 -0000 1.3 --- tcMultiplayerInterface.h 4 Apr 2004 20:54:12 -0000 1.4 *************** *** 23,27 **** --- 23,29 ---- #define _MULTIPLAYERINTERFACE_H_ + #if _MSC_VER > 1000 #pragma once + #endif #include <queue> *************** *** 63,67 **** { MSG_CHATTEXT = 1, ! MSG_USERNAME = 2, }; static tcMultiplayerInterface& Get(); --- 65,69 ---- { MSG_CHATTEXT = 1, ! MSG_USERNAME = 2 }; static tcMultiplayerInterface& Get(); *************** *** 103,105 **** END_NAMESPACE ! #endif \ No newline at end of file --- 105,108 ---- END_NAMESPACE ! #endif ! |