From aba821e79cdcf657f84fd1be7c574e29f7835d12 Mon Sep 17 00:00:00 2001 From: Dieter Hametner Date: Sat, 5 May 2007 23:57:05 +0000 Subject: - General cleanup of recordings. Made design more like other pages - Bugfix for #289, #291 - Adapted styles and helper classes. - recordings should be now strict XHTML. --- epg_events.h | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'epg_events.h') diff --git a/epg_events.h b/epg_events.h index 330f7ba..03c7947 100644 --- a/epg_events.h +++ b/epg_events.h @@ -15,7 +15,6 @@ namespace vdrlive { - class EpgEvent { public: @@ -31,6 +30,15 @@ namespace vdrlive const cEvent* event, const char* channelName = ""); + EpgEvent(const std::string& id, + const std::string& caption, + const std::string& title, + const std::string& short_descr, + const std::string& long_descr, + const std::string& archived, + time_t start_time, + time_t end_time); + virtual ~EpgEvent(); const std::string& Id() const { return m_eventId; } @@ -43,6 +51,8 @@ namespace vdrlive const std::string& LongDescr() const { return m_long_descr; } + const std::string& Archived() const { return m_archived; } + const std::string StartTime(const char* format) const; const std::string EndTime(const char* format) const; @@ -59,6 +69,7 @@ namespace vdrlive std::string m_title; std::string m_short_descr; std::string m_long_descr; + std::string m_archived; time_t m_start_time; time_t m_end_time; }; -- cgit v1.2.3