2002-12-13 23:56:13 +00:00
|
|
|
#ifndef NOTES_WRITER_SM_H
|
|
|
|
|
#define NOTES_WRITER_SM_H
|
|
|
|
|
|
2003-02-16 04:28:17 +00:00
|
|
|
#include "song.h"
|
2002-12-13 23:56:13 +00:00
|
|
|
|
2003-12-04 22:58:18 +00:00
|
|
|
class RageFile;
|
2002-12-13 23:56:13 +00:00
|
|
|
class NotesWriterSM
|
|
|
|
|
{
|
2003-12-04 22:58:18 +00:00
|
|
|
void WriteGlobalTags( RageFile &f, const Song &out );
|
|
|
|
|
void WriteSMNotesTag( const Steps &in, RageFile &f, bool bSavingCache );
|
2002-12-13 23:56:13 +00:00
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
bool Write( CString sPath, const Song &out, bool bSavingCache );
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|