aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/list.h
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2003-10-17 15:36:42 +0000
committerFelix Domke <tmbinc@elitedvb.net>2003-10-17 15:36:42 +0000
commitd63d2c3c6cbbd574dda4f8b00ebe6c661735edd5 (patch)
tree84d0cacfd0b6c1241c236c7860f7cbd7f26901bb /lib/dvb/list.h
downloadenigma2-d63d2c3c6cbbd574dda4f8b00ebe6c661735edd5.tar.gz
enigma2-d63d2c3c6cbbd574dda4f8b00ebe6c661735edd5.zip
import of enigma2
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