mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-31 01:15:48 -04:00
33 lines
1.2 KiB
C++
Executable File
33 lines
1.2 KiB
C++
Executable File
// ======================================================================
|
|
//
|
|
// FirstServerBase.h
|
|
// copyright (c) 2004 Sony Online Entertainment
|
|
//
|
|
// ======================================================================
|
|
|
|
#ifndef INCLUDED_FirstServerBase_H
|
|
#define INCLUDED_FirstServerBase_H
|
|
|
|
// ======================================================================
|
|
|
|
#include "sharedFoundation/FirstSharedFoundation.h"
|
|
#include "sharedNetworkMessages/GameNetworkMessage.h"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
|
|
#ifdef WIN32
|
|
// need to boost type_info into the std namespace, as the boost libraries expect it.
|
|
#include <typeinfo>
|
|
namespace std
|
|
{
|
|
typedef ::type_info type_info; //lint !e36 !e18 // error 36: (Error -- redefining the storage class of symbol '_STL::type_info' (type vs. using declaration), conflicts with line 47, file D:\work\swg\current\src\external\3rd\library\stlport453\stlport\typeinfo) // error 18: (Error -- Symbol '_STL::type_info' redeclared (void/nonvoid) conflicts with line 47, file D:\work\swg\current\src\external\3rd\library\stlport453\stlport\typeinfo) // @todo: look into this.
|
|
};
|
|
#endif
|
|
|
|
// ======================================================================
|
|
|
|
#endif
|
|
|