blob: 9a3cf2b1c1f01a555528d118857e1b080b399328 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*
* charset.h: Character set list item
*
* 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_
|