summaryrefslogtreecommitdiff
path: root/dvdlist-item.h
diff options
context:
space:
mode:
authoranbr <vdr07@deltab.de>2010-12-21 20:36:58 +0100
committeranbr <vdr07@deltab.de>2010-12-21 20:36:58 +0100
commit10a33e14d6338ff004410413f6fe52810be43f67 (patch)
tree6f71b062e9235be1383a9e6c536fea336d400e6c /dvdlist-item.h
downloadvdr-plugin-dvdswitch-10a33e14d6338ff004410413f6fe52810be43f67.tar.gz
vdr-plugin-dvdswitch-10a33e14d6338ff004410413f6fe52810be43f67.tar.bz2
release 0.1.0 from http://www.schmidtie.de/download/vdr-dvdswitch-0.1.0.tar.bz20.1.0
Diffstat (limited to 'dvdlist-item.h')
-rw-r--r--dvdlist-item.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/dvdlist-item.h b/dvdlist-item.h
new file mode 100644
index 0000000..39603b1
--- /dev/null
+++ b/dvdlist-item.h
@@ -0,0 +1,19 @@
+#ifndef __DVDLISTITEM_DVDSWITCH_H
+#define __DVDLISTITEM_DVDSWITCH_H
+
+#include <vdr/tools.h>
+#include <vdr/i18n.h>
+
+class cDVDListItem : public cListObject
+{
+ private:
+ char *File;
+
+ public:
+ cDVDListItem(char* file);
+ ~cDVDListItem(void);
+
+ char* FileName(void) { return File; };
+};
+
+#endif // __DVDLISTITEM_DVDSWITCH_H