1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-20 04:26:03 +08:00

Add CUtlOrderedMap stub

This commit is contained in:
GAMMACASE
2024-05-25 05:41:26 +03:00
parent 5265052f04
commit c5867f9e51
2 changed files with 7 additions and 2 deletions

View File

@ -138,7 +138,7 @@ template <class K, class V>
class CSchemaPtrMap class CSchemaPtrMap
{ {
public: public:
CUtlMap<K, V> m_Map; CUtlOrderedMap<K, V> m_Map;
CThreadFastMutex m_Mutex; CThreadFastMutex m_Mutex;
}; };

View File

@ -1,4 +1,4 @@
//========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============// //========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============//
// //
// Purpose: // Purpose:
// //
@ -200,4 +200,9 @@ protected:
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// AMNOTE: Currently a stub over CUtlMap, needs a complete implementation
template <typename K, typename T, typename I = unsigned short, typename LF = CDefLess<K>>
struct CUtlOrderedMap : public CUtlMap<K, T, I, LF>
{};
#endif // UTLMAP_H #endif // UTLMAP_H