aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/list.h
blob: 80faca1f8f68c10e95ac49420021708f53c5dc92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __list_h
#define __list_h

class eDVBTransponderList: iDVBChannelList
{
	DECLARE_REF(eDVBTransponderList);
	std::map<eDVBChannelID, ePtr<iDVBFrontendParameters> > channels;
public:
	virtual RESULT getChannelFrontendData(const eDVBChannelID &id, ePtr<iDVBFrontendParameters> &parm)=0;
};

#endif