diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2007-05-23 09:34:30 +0000 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2007-05-23 09:34:30 +0000 |
commit | 40bfdf4152c5bd6ef6d3b3b0e726ca5371f5a582 (patch) | |
tree | 070fe23a5c4ac6b0ab13d94802cd97b39ca6e37c /epgsearch.h | |
parent | ae96a23d9cc3d1e2f13b567be5126b7c9a44d032 (diff) | |
download | vdr-plugin-live-40bfdf4152c5bd6ef6d3b3b0e726ca5371f5a582.tar.gz vdr-plugin-live-40bfdf4152c5bd6ef6d3b3b0e726ca5371f5a582.tar.bz2 |
- summary for search results
Diffstat (limited to 'epgsearch.h')
-rw-r--r-- | epgsearch.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/epgsearch.h b/epgsearch.h index 6c38ee1..5a67a54 100644 --- a/epgsearch.h +++ b/epgsearch.h @@ -312,6 +312,7 @@ public: tEventID EventId() const { return m_eventId; } std::string const& Title() const { return m_title; } std::string const& ShortText() const { return m_shorttext; } + std::string const& Description() const { return m_description; } time_t StartTime() const { return m_starttime; } time_t StopTime() const { return m_stoptime; } tChannelID Channel() const { return m_channel; } @@ -325,6 +326,7 @@ private: tEventID m_eventId; std::string m_title; std::string m_shorttext; + std::string m_description; time_t m_starttime; time_t m_stoptime; tChannelID m_channel; |