summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorTimo Eskola <timo@tolleri.net>2015-09-08 12:49:50 +0300
committerTimo Eskola <timo@tolleri.net>2015-09-08 12:49:50 +0300
commit554759de812beb5dcfdc423b1225e5e15ef80713 (patch)
treed84b91568242eb72f5678f4938a016eb44f3758d /config.h
parent2769fb304faf240f2be085f87ca7067bbd4c5824 (diff)
downloadvdr-plugin-duplicates-554759de812beb5dcfdc423b1225e5e15ef80713.tar.gz
vdr-plugin-duplicates-554759de812beb5dcfdc423b1225e5e15ef80713.tar.bz2
Version 0.0.4:
- Added configuration option for title comparison. - Added play button, thanks to Matthias Feistel.
Diffstat (limited to 'config.h')
-rw-r--r--config.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/config.h b/config.h
new file mode 100644
index 0000000..810721e
--- /dev/null
+++ b/config.h
@@ -0,0 +1,25 @@
+/*
+ * config.h: A plugin for the Video Disk Recorder
+ *
+ * See the README file for copyright information and how to reach the author.
+ *
+ * $Id$
+ */
+
+#ifndef _DUPLICATES_CONFIG_H
+#define _DUPLICATES_CONFIG_H
+
+class cDuplicatesConfig {
+ public:
+ // variables
+ int title;
+ // member functions
+ cDuplicatesConfig();
+ ~cDuplicatesConfig();
+ bool SetupParse(const char *Name, const char *Value);
+ void Store(void);
+};
+
+extern cDuplicatesConfig dc;
+
+#endif