blob: d9efe76117898ae2fbfb22729d9d64c3dbb0f6ac (
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
32
33
34
35
36
37
38
|
/*
* config.h: Global configuration and user settings
*
* See the README file for copyright information and how to reach the author.
*
*/
#ifndef _EPGFIXER_CONFIG_H_
#define _EPGFIXER_CONFIG_H_
#include "regexp.h"
class cEpgfixerSetup
{
public:
int quotedshorttext;
int blankbeforedescription;
int repeatedtitle;
int doublequotedshorttext;
int removeformatting;
int longshorttext;
int equalshorttextanddescription;
int nobackticks;
int components;
cEpgfixerSetup();
bool SetupParse(const char *Name, const char *Value);
bool ProcessArgs(int argc, char *argv[]);
protected:
bool ProcessArg(const char *Name, const char *Value);
static cString m_ProcessedArgs;
};
// Global instance
extern cEpgfixerSetup EpgfixerSetup;
#endif //_EPGFIXER_CONFIG_H_
|