2002-12-13 23:56:13 +00:00
|
|
|
#ifndef NOTES_WRITER_SM_H
|
|
|
|
|
#define NOTES_WRITER_SM_H
|
|
|
|
|
|
|
|
|
|
#include "Song.h"
|
|
|
|
|
|
|
|
|
|
class NotesWriterSM
|
|
|
|
|
{
|
|
|
|
|
void WriteGlobalTags(FILE *fp, const Song &out);
|
2002-12-14 21:36:52 +00:00
|
|
|
void WriteSMNotesTag( const Notes &in, FILE* fp );
|
2002-12-13 23:56:13 +00:00
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
bool Write( CString sPath, const Song &out, bool bSavingCache );
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|