diff --git a/stepmania/src/RageUtil_FileDB.h b/stepmania/src/RageUtil_FileDB.h index 3d29c845eb..6c1d15cec7 100644 --- a/stepmania/src/RageUtil_FileDB.h +++ b/stepmania/src/RageUtil_FileDB.h @@ -73,7 +73,6 @@ protected: void GetFilesMatching(const CString &dir, const CString &beginning, const CString &containing, const CString &ending, vector &out, bool bOnlyDirs); - void AddFileSet( CString sPath, FileSet *fs ); /* The given path wasn't cached. Cache it, and return the cached FileSet or * NULL on failure. */ @@ -85,6 +84,8 @@ public: ExpireSeconds( -1 ) { } FilenameDB::~FilenameDB() { FlushDirCache(); } + void AddFileSet( CString sPath, FileSet *fs ); + /* This handles at most two * wildcards. If we need anything more complicated, * we'll need to use fnmatch or regex. */ void GetFilesSimpleMatch(const CString &dir, const CString &fn, vector &out, bool bOnlyDirs);