diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2005-02-13 00:09:19 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2005-02-13 00:09:19 +0000 |
| commit | e677ac4a7bf81391877c909a703e5918ce4a511b (patch) | |
| tree | 4944b7cf6c8b6f1715d642fc0dd2f2b3e2b849d5 /lib/service/event.h | |
| parent | d7d291938c45893e28715fb12ae5b83d334084e9 (diff) | |
| download | enigma2-e677ac4a7bf81391877c909a703e5918ce4a511b.tar.gz enigma2-e677ac4a7bf81391877c909a703e5918ce4a511b.zip | |
- started work on EIT
- added "pcore", the navigation core for python
Diffstat (limited to 'lib/service/event.h')
| -rw-r--r-- | lib/service/event.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/service/event.h b/lib/service/event.h new file mode 100644 index 00000000..967f9efa --- /dev/null +++ b/lib/service/event.h @@ -0,0 +1,21 @@ +#ifndef __service_ievent_h +#define __service_ievent_h + +#include <time.h> +#include <lib/base/object.h> +#include <string> +class Event; + +class eServiceEvent: public iObject +{ +DECLARE_REF; +public: + time_t m_begin; + int m_duration; + std::string m_event_name, m_description; + // .. additional info + + RESULT parseFrom(Event *evt); +}; + +#endif |
