diff options
author | Jochen Dolze <vdr@dolze.de> | 2009-01-30 00:14:56 +0100 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2009-01-30 00:14:56 +0100 |
commit | 54a468314486b9c5e9ea34d36791873d54fb8365 (patch) | |
tree | 6bd9b2fa8a6f2a7afacc9acd7156281e7057f0c9 /process.h | |
parent | 6fb31a9477d93e019b0a2b4ef8457288ab0a40f4 (diff) | |
download | vdr-plugin-infosatepg-54a468314486b9c5e9ea34d36791873d54fb8365.tar.gz vdr-plugin-infosatepg-54a468314486b9c5e9ea34d36791873d54fb8365.tar.bz2 |
Added extened EPG
New setup for channels
Diffstat (limited to 'process.h')
-rw-r--r-- | process.h | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -28,6 +28,8 @@ private: int fsk; int year; int usage; + int days; + char *extepg; tEventID eventID; public: cInfosatevent(); @@ -37,18 +39,17 @@ public: void SetDescription(const char *Description); void SetStartTime(time_t StartTime) { startTime=StartTime; } void SetDuration(int Duration) { duration=Duration; } - void SetEventUse(int Usage) { usage=Usage; } + void SetEventUsage(int Usage) { usage=Usage; } + void SetEventDays(int Days) { days=Days; } void SetYear(int Year) { year=Year; } void SetEventID(tEventID EventID) { eventID=EventID; } void SetCategory(int Category) { category=Category; } void SetFSK(int FSK) { fsk=FSK; } - void SetAnnouncement(const char *Announcement); void SetCountry(const char *Country); void SetGenre(const char *Genre); void SetOriginal(const char *Original); - const char *Description(const char *oldDescription); - + const char *Description(void) const { return description; } const char *Title(void) const { return title; } const char *ShortText(void) const { return shortText; } const char *Announcement(void) const { return announcement; } @@ -60,8 +61,10 @@ public: int FSK(void) const { return fsk; } int Category(void) const { return category; } time_t StartTime(void) const { return startTime; } - int GetEventUse() { return usage; } + int Usage() { return usage; } + int Days() { return days; } tEventID EventID(void) const { return eventID; } + const char *ExtEPG(void); }; // --- cProcessInfosatepg |