diff options
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 25 |
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 |