1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef __list_h #define __list_h class eDVBTransponderList: iDVBChannelList { DECLARE_REF; private: std::map<eDVBChannelID, ePtr<iDVBFrontendParameters> > channels; public: virtual RESULT getChannelFrontendData(const eDVBChannelID &id, ePtr<iDVBFrontendParameters> &parm)=0; }; #endif