blob: b6c53b87d638a30ac9342b39f69431e5a16f5d07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#ifndef VDR_LIVE_TIMERS_H
#define VDR_LIVE_TIMERS_H
#include <list>
#include <vdr/timers.h>
#include "live.h"
namespace vdrlive {
class Plugin;
class TimerManager
{
friend TimerManager& Plugin::GetLiveTimerManager();
private:
TimerManager();
TimerManager( TimerManager const& );
};
inline TimerManager& LiveTimerManager()
{
return LivePlugin().GetLiveTimerManager();
}
} // namespace vdrlive
#endif // VDR_LIVE_TIMERS_H
|