vdr  2.2.0
eit.h
Go to the documentation of this file.
1 /*
2  * eit.h: EIT section filter
3  *
4  * See the main source file 'vdr.c' for copyright information and
5  * how to reach the author.
6  *
7  * $Id: eit.h 3.0 2010/01/03 15:28:34 kls Exp $
8  */
9 
10 #ifndef __EIT_H
11 #define __EIT_H
12 
13 #include "filter.h"
14 
15 class cEitFilter : public cFilter {
16 private:
17  static time_t disableUntil;
18 protected:
19  virtual void Process(u_short Pid, u_char Tid, const u_char *Data, int Length);
20 public:
21  cEitFilter(void);
22  static void SetDisableUntil(time_t Time);
23  };
24 
25 #endif //__EIT_H
Definition: eit.h:15
static void SetDisableUntil(time_t Time)
Definition: eit.c:375
Definition: filter.h:41
static time_t disableUntil
Definition: eit.h:17
virtual void Process(u_short Pid, u_char Tid, const u_char *Data, int Length)
Processes the data delivered to this filter.
Definition: eit.c:380
cEitFilter(void)
Definition: eit.c:369
unsigned char u_char
Definition: headers.h:24