CString -> RString

This commit is contained in:
Chris Danford
2006-01-22 01:00:06 +00:00
parent 870ed267fc
commit 7f821e8cfc
578 changed files with 3943 additions and 3946 deletions
+5 -5
View File
@@ -11,14 +11,14 @@ class NoteData;
class KSFLoader: public NotesLoader
{
bool LoadFromKSFFile( const CString &sPath, Steps &out, const Song &song );
bool LoadGlobalData( const CString &sPath, Song &out );
bool LoadFromKSFFile( const RString &sPath, Steps &out, const Song &song );
bool LoadGlobalData( const RString &sPath, Song &out );
void RemoveHoles( NoteData &out, const Song &song );
void LoadTags( const CString &str, Song &out );
void LoadTags( const RString &str, Song &out );
public:
void GetApplicableFiles( CString sPath, vector<CString> &out );
bool LoadFromDir( CString sDir, Song &out );
void GetApplicableFiles( RString sPath, vector<RString> &out );
bool LoadFromDir( RString sDir, Song &out );
};