aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dvb/list.h')
-rw-r--r--lib/dvb/list.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/dvb/list.h b/lib/dvb/list.h
new file mode 100644
index 00000000..6df49803
--- /dev/null
+++ b/lib/dvb/list.h
@@ -0,0 +1,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