Merge branch 'bug_615_replace_rawfile'
[enigma2.git] / lib / dvb / list.h
1 #ifndef __list_h
2 #define __list_h
3
4 class eDVBTransponderList: iDVBChannelList
5 {
6         DECLARE_REF(eDVBTransponderList);
7         std::map<eDVBChannelID, ePtr<iDVBFrontendParameters> > channels;
8 public:
9         virtual RESULT getChannelFrontendData(const eDVBChannelID &id, ePtr<iDVBFrontendParameters> &parm)=0;
10 };
11
12 #endif