CString -> RString

const string params where possible for easier debug stepping
This commit is contained in:
Chris Danford
2005-12-28 03:59:52 +00:00
parent 1c209efd19
commit 1fcfc22981
11 changed files with 116 additions and 116 deletions
+5 -5
View File
@@ -10,13 +10,13 @@ class ThreadedFileWorker;
class RageFileDriverTimeout: public RageFileDriver
{
public:
RageFileDriverTimeout( CString path );
RageFileDriverTimeout( const RString &path );
virtual ~RageFileDriverTimeout();
RageFileBasic *Open( const CString &path, int mode, int &err );
void FlushDirCache( const CString &sPath );
bool Move( const CString &sOldPath, const CString &sNewPath );
bool Remove( const CString &sPath );
RageFileBasic *Open( const RString &path, int mode, int &err );
void FlushDirCache( const RString &sPath );
bool Move( const RString &sOldPath, const RString &sNewPath );
bool Remove( const RString &sPath );
static void SetTimeout( float fSeconds );
static void ResetTimeout() { SetTimeout( -1 ); }