- add more python stuff
[enigma2.git] / lib / nav / playlist.h
1 #ifndef __lib_nav_playlist_h
2 #define __lib_nav_playlist_h
3
4 #include <list>
5 #include <lib/base/object.h>
6 #include <lib/service/iservice.h>
7
8 class ePlaylist: public iObject, public std::list<eServiceReference>
9 {
10 DECLARE_REF;
11 public:
12         ePlaylist();
13         virtual ~ePlaylist();
14         std::list<eServiceReference>::iterator m_current;
15 };
16
17 #endif