diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-11-09 16:54:59 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-11-09 16:54:59 +0000 |
| commit | 26b93e5ee373462211802fe859bd6a6d9dc083a5 (patch) | |
| tree | 441a4c3f3aab2e6cad444339cf0cd68f68c33268 /lib/service/event.h | |
| parent | 66f5402c111a563e2aa1089c86683ea24aea1957 (diff) | |
| download | enigma2-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.h | 5 |
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); }; |
