vdr  2.0.4
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 2.1 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
26