Started work on build system

This commit is contained in:
2025-05-31 00:42:41 +03:00
parent 953cca2aa4
commit ade32c24a6
33 changed files with 369 additions and 498 deletions

View File

@@ -6,7 +6,8 @@
class CUtlString {
public:
CUtlString( void );
CUtlString( const char *psz, ... );
CUtlString( const char *psz, ... );
CUtlString( const CUtlString &sz );
void AppendTail( const char *psz );
void AppendHead( const char *psz );
@@ -19,6 +20,7 @@ public:
char *GetString( void );
size_t GetLenght( void );
operator char*( void );
CUtlString& operator=(const CUtlString &sz);
bool operator==(const char* psz);
bool operator!=(const char* psz);
bool operator==(CUtlString& string);
@@ -27,4 +29,4 @@ private:
CUtlVector<char> m_data;
};
#endif
#endif