SDL_NET guard

This commit is contained in:
James Turk 2003-03-15 03:27:19 +00:00
parent bd4c6731a8
commit baa550f7f3
4 changed files with 20 additions and 4 deletions

View File

@ -13,7 +13,7 @@
File: ZE_ZClient.h <br>
Description: Header file for core ZEngine TCP Client Object. <br>
Author(s): James Turk <br>
$Id: ZE_ZClient.h,v 1.1 2003/03/14 22:18:14 cozman Exp $<br>
$Id: ZE_ZClient.h,v 1.2 2003/03/15 03:27:19 cozman Exp $<br>
\file ZE_ZClient.h
\brief Definition file for ZClient.
@ -26,6 +26,8 @@ $Id: ZE_ZClient.h,v 1.1 2003/03/14 22:18:14 cozman Exp $<br>
#include "ZE_ZEngine.h"
#ifdef USE_SDL_NET
namespace ZE
{
@ -128,4 +130,6 @@ class ZClient
} //namespace ZE
#endif //USE_SDL_NET
#endif //__ze_zclient_h__

View File

@ -13,7 +13,7 @@
File: ZE_ZServer.h <br>
Description: Header file for core ZEngine TCP Server Object. <br>
Author(s): James Turk <br>
$Id: ZE_ZServer.h,v 1.1 2003/03/14 22:18:14 cozman Exp $<br>
$Id: ZE_ZServer.h,v 1.2 2003/03/15 03:27:19 cozman Exp $<br>
\file ZE_ZServer.h
\brief Definition file for ZServer.
@ -26,6 +26,8 @@ $Id: ZE_ZServer.h,v 1.1 2003/03/14 22:18:14 cozman Exp $<br>
#include "ZE_ZEngine.h"
#ifdef USE_SDL_NET
namespace ZE
{
@ -130,4 +132,6 @@ class ZServer
} //namespace ZE
#endif //USE_SDL_NET
#endif //__ze_zserver_h__

View File

@ -13,7 +13,7 @@
File: ZE_ZClient.cpp <br>
Description: Implementation source file for core ZEngine TCP Client Object. <br>
Author(s): James Turk <br>
$Id: ZE_ZClient.cpp,v 1.2 2003/03/14 22:20:13 cozman Exp $<br>
$Id: ZE_ZClient.cpp,v 1.3 2003/03/15 03:27:19 cozman Exp $<br>
\file ZE_ZClient.cpp
\brief Source file for ZClient.
@ -23,6 +23,8 @@ $Id: ZE_ZClient.cpp,v 1.2 2003/03/14 22:20:13 cozman Exp $<br>
#include "ZE_ZClient.h"
#ifdef USE_SDL_NET
namespace ZE
{
@ -168,3 +170,5 @@ int ZClient::WaitTime()
}
} //namespace ZE
#endif //USE_SDL_NET

View File

@ -13,7 +13,7 @@
File: ZE_ZServer.cpp <br>
Description: Implementation source file for core ZEngine TCP Server Object. <br>
Author(s): James Turk <br>
$Id: ZE_ZServer.cpp,v 1.2 2003/03/14 22:20:12 cozman Exp $<br>
$Id: ZE_ZServer.cpp,v 1.3 2003/03/15 03:27:19 cozman Exp $<br>
\file ZE_ZServer.cpp
\brief Source file for ZServer.
@ -23,6 +23,8 @@ $Id: ZE_ZServer.cpp,v 1.2 2003/03/14 22:20:12 cozman Exp $<br>
#include "ZE_ZServer.h"
#ifdef USE_SDL_NET
namespace ZE
{
@ -194,3 +196,5 @@ int ZServer::WaitTime()
}
} //namespace ZE
#endif //USE_SDL_NET