- started work on EIT
[vuplus_dvbapp] / lib / service / event.h
1 #ifndef __service_ievent_h
2 #define __service_ievent_h
3
4 #include <time.h>
5 #include <lib/base/object.h>
6 #include <string>
7 class Event;
8
9 class eServiceEvent: public iObject
10 {
11 DECLARE_REF;
12 public:
13         time_t m_begin;
14         int m_duration;
15         std::string m_event_name, m_description;
16         // .. additional info
17         
18         RESULT parseFrom(Event *evt);
19 };
20
21 #endif