aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/list.h
blob: 6df49803667d600c66db9b021bf2b765321b496b (plain)
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