aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/list.h
blob: 80ad20e806dc317a48809a0c174b77576ceecc3a (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(eDVBTransponderList);
private:
	std::map<eDVBChannelID, ePtr<iDVBFrontendParameters> > channels;
public:
	virtual RESULT getChannelFrontendData(const eDVBChannelID &id, ePtr<iDVBFrontendParameters> &parm)=0;
};

#endif