Removed STLport requirement

This commit is contained in:
Anonymous
2014-01-23 00:16:13 -07:00
parent a9ac73d4e5
commit fac1f2c5ae
173 changed files with 454 additions and 479 deletions
@@ -84,6 +84,5 @@ target_link_libraries(CustomerServiceServer
unicode
unicodeArchive
CSAssist
${STLPORT_LIBRARIES}
${CMAKE_DL_LIBS}
)
@@ -12,7 +12,7 @@
#include "sharedNetworkMessages/SetupSharedNetworkMessages.h"
#include "sharedRandom/SetupSharedRandom.h"
#include "sharedThread/SetupSharedThread.h"
#include <hash_map>
#include <tr1/unordered_map>
// ======================================================================
@@ -37,7 +37,7 @@ private:
int m_pendingTicketCount;
};
typedef stdhash_map<NetworkId, ClientInfo, NetworkId::Hash>::fwd ClientConnectionMap;
typedef stdunordered_map<NetworkId, ClientInfo, NetworkId::Hash>::fwd ClientConnectionMap;
typedef stdmap<unsigned int, NetworkId>::fwd SuidToNetworkIdMap;
typedef stdvector<CustomerServiceCategory>::fwd CategoryList;
@@ -12,7 +12,7 @@
#include "sharedFoundation/FirstSharedFoundation.h"
#include "sharedFoundation/NetworkId.h"
#include "sharedNetwork/Connection.h"
#include <hash_map>
#include <tr1/unordered_map>
#include <string>
//-----------------------------------------------------------------------