summaryrefslogtreecommitdiff
path: root/event.h
diff options
context:
space:
mode:
Diffstat (limited to 'event.h')
-rw-r--r--event.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/event.h b/event.h
index 3b8c34c..94c1d64 100644
--- a/event.h
+++ b/event.h
@@ -10,7 +10,7 @@
#include <sys/types.h>
#include <regex.h>
-
+
#include <vdr/tools.h>
#include <vdr/config.h>
@@ -21,24 +21,24 @@ class cEventBlock : public cListObject {
private:
char mPattern[EVLINELENGTH];
- int mRegularExp;
- int mIgnoreCase;
- bool mCompiled;
+ int mRegularExp;
+ int mIgnoreCase;
+ bool mCompiled;
- regex_t mExpression;
+ regex_t mExpression;
public:
cEventBlock(void);
cEventBlock(const char *Pattern);
- cEventBlock(const cEventBlock &Src);
- ~cEventBlock();
+ cEventBlock(const cEventBlock &Src);
+ ~cEventBlock();
- cEventBlock &operator=(const cEventBlock &Src);
+ cEventBlock &operator=(const cEventBlock &Src);
bool Acceptable(const char *Event) const ;
bool Parse(char *s);
- bool Compile(void);
+ bool Compile(void);
bool Save(FILE *f);
const char *Pattern(void) const { return mPattern; }