Move MakeLoader to NotesLoader. It doesn't make sense for it to be a member function of Song.

This commit is contained in:
Steve Checkoway
2006-06-20 07:12:52 +00:00
parent 5e7ac2deed
commit 3a9bdc1646
4 changed files with 36 additions and 33 deletions
+2
View File
@@ -21,6 +21,8 @@ public:
virtual bool LoadFromDir( const RString &sPath, Song &out ) = 0;
virtual void TidyUpData( Song &song, bool cache ) { }
bool Loadable( const RString &sPath );
static NotesLoader *MakeLoader( const RString& sDir );
};
#endif