diff options
Diffstat (limited to 'charset.h')
-rw-r--r-- | charset.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/charset.h b/charset.h new file mode 100644 index 0000000..fd021df --- /dev/null +++ b/charset.h @@ -0,0 +1,31 @@ +/* + * regexp.h: Regular expression list + * + * See the README file for copyright information and how to reach the author. + * + */ + +#ifndef _CHARSET_H_ +#define _CHARSET_H_ + +#include "tools.h" +#include <vdr/epg.h> +#include <vdr/tools.h> +#include <stdio.h> + +class cCharSet : public cListItem +{ +private: + char *charset; +public: + cCharSet(); + virtual ~cCharSet(); + bool ConvertCharSet(cEvent *Event); + void SetFromString(char *string, bool Enabled); + virtual void PrintConfigLineToFile(FILE *f); +}; + +// Global instance +extern cEpgfixerList<cCharSet> EpgfixerCharSets; + +#endif //_REGEXP_H_ |