aboutsummaryrefslogtreecommitdiff
path: root/lib/service/event.h
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-11-09 16:54:59 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-11-09 16:54:59 +0000
commit26b93e5ee373462211802fe859bd6a6d9dc083a5 (patch)
tree441a4c3f3aab2e6cad444339cf0cd68f68c33268 /lib/service/event.h
parent66f5402c111a563e2aa1089c86683ea24aea1957 (diff)
downloadenigma2-26b93e5ee373462211802fe859bd6a6d9dc083a5.tar.gz
enigma2-26b93e5ee373462211802fe859bd6a6d9dc083a5.zip
start_time is now valid in eServiceEvent,
rename and add new members ( m_short_description, m_extended_description ) add ability to filter short/extended events (language code)
Diffstat (limited to 'lib/service/event.h')
-rw-r--r--lib/service/event.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/service/event.h b/lib/service/event.h
index 99ce5b24..57e5b821 100644
--- a/lib/service/event.h
+++ b/lib/service/event.h
@@ -12,9 +12,10 @@ DECLARE_REF(eServiceEvent);
public:
time_t m_begin;
int m_duration;
- std::string m_event_name, m_description;
+ std::string m_event_name, m_short_description, m_extended_description;
// .. additional info
-
+
+ bool language_exists(Event *event, std::string lang);
RESULT parseFrom(Event *evt);
};