/* * charset.h: Character set list item * * See the README file for copyright information and how to reach the author. * */ #ifndef __EPGFIXER_CHARSET_H_ #define __EPGFIXER_CHARSET_H_ #include "tools.h" #include class cCharSet : public cListItem { private: char *origcharset; char *realcharset; public: cCharSet(); virtual ~cCharSet(); using cListItem::Apply; virtual bool Apply(cEvent *Event); void SetFromString(char *string, bool Enabled); }; // Global instance extern cEpgfixerList EpgfixerCharSets; #endif //__EPGFIXER_CHARSET_H_