X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/cbaa4012ef5481091ac9b206e29e4c396859abe2..36940d42cf3cc58b40a5a6f5fe86bad50ff48ad7:/lib/service/event.h diff --git a/lib/service/event.h b/lib/service/event.h index 3a71f7b7..3bbb322e 100644 --- a/lib/service/event.h +++ b/lib/service/event.h @@ -1,25 +1,35 @@ #ifndef __lib_service_event_h #define __lib_service_event_h -#ifndef PYTHON - +#ifndef SWIG #include #include +#include #include class Event; - #endif + class eServiceEvent: public iObject { DECLARE_REF(eServiceEvent); +#ifndef SWIG + bool loadLanguage(Event *event, std::string lang, int tsidonid); +#endif public: -#ifndef PYTHON +#ifndef SWIG + struct linkage_service + { + uint16_t sid; + uint16_t onid; + uint16_t tsid; + std::string description; + }; + std::list m_linkage_services; time_t m_begin; int m_duration; std::string m_event_name, m_short_description, m_extended_description; // .. additional info - bool loadLanguage(Event *event, std::string lang); - RESULT parseFrom(Event *evt); + RESULT parseFrom(Event *evt, int tsidonid=0); #endif time_t getBeginTime() { return m_begin; } int getDuration() { return m_duration; } @@ -29,8 +39,8 @@ public: std::string getBeginTimeString(); }; -#ifndef PYTHON TEMPLATE_TYPEDEF(ePtr, eServiceEventPtr); +#ifndef SWIG class eDebugClass: public iObject {