add notesloader base class

This commit is contained in:
Glenn Maynard
2002-09-11 05:15:46 +00:00
parent 2237a894d2
commit db53dc9923
14 changed files with 141 additions and 52 deletions
+4 -2
View File
@@ -3,12 +3,14 @@
#include "Song.h"
#include "Notes.h"
#include "NotesLoader.h"
class KSFLoader {
class KSFLoader: public NotesLoader {
bool LoadFromKSFFile( const CString &sPath, Notes &out );
public:
bool LoadFromKSFDir( CString sDir, Song &out );
void GetApplicableFiles( CString sPath, CStringArray &out );
bool LoadFromDir( CString sDir, Song &out );
};