Revert tier1 include change

This commit is contained in:
Kenzzer 2025-10-28 08:55:32 +00:00
parent 1659dbf892
commit 390d57cf11
No known key found for this signature in database
GPG Key ID: 64C3FD4332686DC1

View File

@ -39,7 +39,6 @@ class CUtlBuffer;
class Color;
typedef void * FileHandle_t;
class CKeyValuesGrowableStringTable;
class IKeyValuesSystem;
//-----------------------------------------------------------------------------
// Purpose: Simple recursive data access class
@ -118,12 +117,9 @@ public:
// gets the name as a unique int
int GetNameSymbol() const { return m_iKeyName; }
bool IsUsingLocalStorage() const;
// File access. Set UsesEscapeSequences true, if resource file/buffer uses Escape Sequences (eg \n, \t)
void UsesEscapeSequences(bool state); // default false
void UsesConditionals(bool state); // default true
bool LoadFromFile( IBaseFileSystem *filesystem, const char *resourceName, const char *pathID = NULL, bool refreshCache = false );
bool SaveToFile( IBaseFileSystem *filesystem, const char *resourceName, const char *pathID = NULL, bool sortKeys = false, bool bAllowEmptyString = false, bool bCacheResult = false );
@ -334,14 +330,12 @@ private:
char m_iDataType;
char m_bHasEscapeSequences; // true, if while parsing this KeyValue, Escape Sequences are used (default false)
char m_bEvaluateConditionals; // true, if while parsing this KeyValue, conditionals blocks are evaluated (default true)
char m_bLocalStorage;
char unused[1];
KeyValues *m_pPeer; // pointer to next key in list
KeyValues *m_pSub; // pointer to Start of a new sub key list
KeyValues *m_pChain;// Search here if it's not in our list
CKeyValuesGrowableStringTable* m_pStringTable;
private:
// Statics to implement the optional growable string table
// Function pointers that will determine which mode we are in