more robust rtp plus tag parsing
[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 private:
8         std::map<eDVBChannelID, ePtr<iDVBFrontendParameters> > channels;
9 public:
10         virtual RESULT getChannelFrontendData(const eDVBChannelID &id, ePtr<iDVBFrontendParameters> &parm)=0;
11 };
12
13 #endif