mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-09-19 20:16:10 +08:00
Add CUtlOrderedMap stub
This commit is contained in:
@ -138,7 +138,7 @@ template <class K, class V>
|
||||
class CSchemaPtrMap
|
||||
{
|
||||
public:
|
||||
CUtlMap<K, V> m_Map;
|
||||
CUtlOrderedMap<K, V> m_Map;
|
||||
CThreadFastMutex m_Mutex;
|
||||
};
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
//========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============//
|
||||
//========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============//
|
||||
//
|
||||
// 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
|
||||
|
Reference in New Issue
Block a user