#include <playlist.h>
Inherits Linklist.
Inheritance diagram for Playlist:
Playlist class serves the methods to add new files or urls, select them and such. It basically adds some few functionalities on top of the basic ones implemented by the Linklist parent class.
Definition at line 73 of file playlist.h.
Public Member Functions | |
char * | addurl (const char *file) |
append a new url at the end of the playlist queue | |
char * | addurl (const char *file, int pos) |
add a new url at a certain position of the playlist queue | |
char * | song (int pos) |
return the url at a certain position of the playlist queue | |
char * | selection () |
return the currently selected url in the playlist queue | |
void | cleanup () |
cleanup and release all playlist queue |
|
return the url at a certain position of the playlist queue
Definition at line 117 of file playlist.cpp. |