0ff6f863ee
I'd prefer "Song.h", but it's not worth losing history for, and SF will choke on that rename anyway.
16 lines
282 B
C++
16 lines
282 B
C++
#ifndef NOTES_WRITER_SM_H
|
|
#define NOTES_WRITER_SM_H
|
|
|
|
#include "song.h"
|
|
|
|
class NotesWriterSM
|
|
{
|
|
void WriteGlobalTags(FILE *fp, const Song &out);
|
|
void WriteSMNotesTag( const Notes &in, FILE* fp );
|
|
|
|
public:
|
|
bool Write( CString sPath, const Song &out, bool bSavingCache );
|
|
};
|
|
|
|
#endif
|