diff options
author | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-12 22:05:30 +0000 |
---|---|---|
committer | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-12 22:05:30 +0000 |
commit | 2cb8c257e0693fe8c7c7bdfe2b2dbe5c6b156bbe (patch) | |
tree | f725782ef5c1a47fbf15d705fade594bc6ef0aa0 /timers.h | |
parent | b405e4e3d31ceda6fa3de366d8c5374a160e1266 (diff) | |
download | vdr-plugin-live-2cb8c257e0693fe8c7c7bdfe2b2dbe5c6b156bbe.tar.gz vdr-plugin-live-2cb8c257e0693fe8c7c7bdfe2b2dbe5c6b156bbe.tar.bz2 |
- added operators for streaming tChannelID
- passing tChannelID consistently
Diffstat (limited to 'timers.h')
-rw-r--r-- | timers.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3,6 +3,7 @@ #include <list> #include <string> +#include <vdr/channels.h> #include <vdr/timers.h> #include <vdr/thread.h> #include "live.h" @@ -33,7 +34,7 @@ class TimerManager: public cMutex public: SortedTimers& GetTimers() { return m_timers; } - void UpdateTimer( cTimer* timer, int flags, std::string const& channel, std::string const& weekdays, std::string const& day, + void UpdateTimer( cTimer* timer, int flags, tChannelID& channel, std::string const& weekdays, std::string const& day, int start, int stop, int priority, int lifetime, std::string const& title, std::string const& aux ); // may only be called from Plugin::MainThreadHook |