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 -1
View File
@@ -3,8 +3,9 @@
#include "Song.h"
#include "Notes.h"
#include "NotesLoader.h"
class SMLoader {
class SMLoader: public NotesLoader {
void LoadFromSMTokens(
CString sNotesType,
CString sDescription,
@@ -17,6 +18,8 @@ class SMLoader {
public:
bool LoadFromSMFile( CString sPath, Song &out );
void GetApplicableFiles( CString sPath, CStringArray &out );
bool LoadFromDir( CString sPath, Song &out );
};
#endif