2003-03-08 08:53:08 +00:00
|
|
|
#ifndef LYRICS_LOADER_H
|
|
|
|
|
#define LYRICS_LOADER_H
|
|
|
|
|
/*
|
2003-03-22 19:19:37 +00:00
|
|
|
* Loads lyrics from an LRC file.
|
|
|
|
|
*/
|
2003-03-08 08:53:08 +00:00
|
|
|
|
|
|
|
|
#include "song.h"
|
|
|
|
|
|
|
|
|
|
class LyricsLoader {
|
|
|
|
|
public:
|
2003-11-30 06:20:25 +00:00
|
|
|
bool LoadFromLRCFile( const CString& sPath, Song &out );
|
2003-03-08 08:53:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|
2003-03-22 19:19:37 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
Copyright (c) 2003 by the person(s) listed below. All rights reserved.
|
|
|
|
|
Kevin Slaughter
|
|
|
|
|
Glenn Maynard
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|