mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Dumping EPG data every ten minutes
This commit is contained in:
5
eit.h
5
eit.h
@@ -13,7 +13,7 @@
|
||||
* the Free Software Foundation; either version 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
* $Id: eit.h 1.3 2000/11/17 16:14:27 kls Exp $
|
||||
* $Id: eit.h 1.4 2000/11/24 14:35:22 kls Exp $
|
||||
***************************************************************************/
|
||||
|
||||
#ifndef __EIT_H
|
||||
@@ -66,6 +66,7 @@ public:
|
||||
unsigned short GetServiceID(void) const;
|
||||
int GetChannelNumber(void) const { return nChannelNumber; }
|
||||
void SetChannelNumber(int ChannelNumber) const { ((cEventInfo *)this)->nChannelNumber = ChannelNumber; } // doesn't modify the EIT data, so it's ok to make it 'const'
|
||||
void Dump(FILE *f) const;
|
||||
};
|
||||
|
||||
class cSchedule : public cListObject {
|
||||
@@ -92,6 +93,7 @@ public:
|
||||
const cEventInfo *GetEvent(time_t tTime) const;
|
||||
const cEventInfo *GetEventNumber(int n) const { return Events.Get(n); }
|
||||
int NumEvents(void) const { return Events.Count(); }
|
||||
void Dump(FILE *f) const;
|
||||
};
|
||||
|
||||
class cSchedules : public cList<cSchedule> {
|
||||
@@ -107,6 +109,7 @@ public:
|
||||
~cSchedules();
|
||||
const cSchedule *GetSchedule(unsigned short servid) const;
|
||||
const cSchedule *GetSchedule(void) const;
|
||||
void Dump(FILE *f) const;
|
||||
};
|
||||
|
||||
typedef struct sip_filter {
|
||||
|
||||
Reference in New Issue
Block a user