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
+6 -6
View File
@@ -8,15 +8,15 @@
class RageFileDriverDirect: public RageFileDriver
{
public:
RageFileDriverDirect( CString sRoot );
RageFileDriverDirect( const RString &sRoot );
RageFileBasic *Open( const CString &sPath, int iMode, int &iError );
bool Move( const CString &sOldPath, const CString &sNewPath );
bool Remove( const CString &sPath );
bool Remount( const CString &sPath );
RageFileBasic *Open( const RString &sPath, int iMode, int &iError );
bool Move( const RString &sOldPath, const RString &sNewPath );
bool Remove( const RString &sPath );
bool Remount( const RString &sPath );
private:
CString m_sRoot;
RString m_sRoot;
};
#endif