X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/b2ec733c0227ae072b8d3b19bfb9fd98e2b6961e..2bc75c09718546fe48ffe1e68c65402ec5fdf0f2:/lib/nav/core.h diff --git a/lib/nav/core.h b/lib/nav/core.h index c4306e39..b71a0fd1 100644 --- a/lib/nav/core.h +++ b/lib/nav/core.h @@ -12,8 +12,6 @@ class eNavigation: public iObject, public Object private: ePtr m_runningService; - ePtr m_recordingService; - ePtr m_servicehandler; Signal2 m_event; ePtr m_service_event_conn; @@ -27,7 +25,8 @@ public: evNewService, /** a new "current" service was just started */ evPlayFailed, /** the next service (in playlist) or the one given in playService failed to play */ evPlaylistDone, /** the last service in the playlist was just played */ - evUpdatedEventInfo /** the "currently running" event info was updated */ + evUpdatedEventInfo, /** the "currently running" event info was updated */ + evUpdatedInfo /** the program info of this service was updated */ }; RESULT playService(const eServiceReference &service); @@ -38,8 +37,7 @@ public: RESULT getPlaylist(ePtr &playlist); RESULT stopService(void); - RESULT recordService(const eServiceReference &service); - RESULT endRecording(); + RESULT recordService(const eServiceReference &ref, ePtr &service); RESULT pause(int p); eNavigation(iServiceHandler *serviceHandler);