/* * blacklist.h: Blacklist list item * * See the README file for copyright information and how to reach the author. * */ #ifndef __EPGFIXER_BLACKLIST_H_ #define __EPGFIXER_BLACKLIST_H_ #include #include #include "tools.h" class cBlacklist : public cListItem { public: cBlacklist() {} virtual ~cBlacklist() {} using cListItem::Apply; virtual bool Apply(cChannel *Channel); void SetFromString(char *string, bool Enabled); }; // Global instance extern cEpgfixerList EpgfixerBlacklists; #endif //__EPGFIXER_BLACKLIST_H_