diff options
author | phintuka <phintuka> | 2006-12-24 00:19:18 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2006-12-24 00:19:18 +0000 |
commit | 828ec04f62577d7a06d01eaea26966b8e0daf787 (patch) | |
tree | 44bc4e96ee42b61f9d514d4fe3565f918def2746 | |
parent | ebd2b5bec09a402f12423198c1f129d6391aecba (diff) | |
download | xineliboutput-828ec04f62577d7a06d01eaea26966b8e0daf787.tar.gz xineliboutput-828ec04f62577d7a06d01eaea26966b8e0daf787.tar.bz2 |
ID3 scanner
-rw-r--r-- | tools/playlist.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/playlist.h b/tools/playlist.h index f42b408a..870e8469 100644 --- a/tools/playlist.h +++ b/tools/playlist.h @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: playlist.h,v 1.1 2006-12-23 10:07:03 phintuka Exp $ + * $Id: playlist.h,v 1.2 2006-12-24 00:19:18 phintuka Exp $ * */ @@ -90,7 +90,9 @@ class cPlaylist : protected cList<cPlaylistItem> bool (config_t::*Filter)(const char *) = &config_t::IsAudioFile); friend class cID3Scanner; + friend class cPlaylistReader; void PlaylistChanged(const cPlaylistItem *Item); + cPlaylistItem *Last(void) { return cList<cPlaylistItem>::Last(); } public: @@ -104,6 +106,7 @@ class cPlaylist : protected cList<cPlaylistItem> // read playlist from file or create playlist from directory tree bool Read(const char *PlaylistFile, bool Recursive = false); + void StartScanner(void); void Sort(void); int Count(void) const; |