diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-11-26 15:23:39 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-11-26 15:23:39 +0100 |
commit | ad8610d5d0b78fccdb0576ab49fb84706477cd1e (patch) | |
tree | 4389d507bf4285a578f9d767763d8b9d9bbf683f /eit.h | |
parent | c50513accdb3d5d0e5560a4899b1f45569aeb46f (diff) | |
download | vdr-ad8610d5d0b78fccdb0576ab49fb84706477cd1e.tar.gz vdr-ad8610d5d0b78fccdb0576ab49fb84706477cd1e.tar.bz2 |
Dumping EPG data every ten minutes
Diffstat (limited to 'eit.h')
-rw-r--r-- | eit.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 { |