blob: 17b8d8c1ba94205eb18ae84994ad9ad956f62b58 (
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
31
32
33
34
35
36
|
/*
* remote.h: remote control
*
* See the README file for copyright information and how to reach the author.
*
*/
#ifndef REMOTE_H
#define REMOTE_H
#include <vdr/remote.h>
#include <vdr/thread.h>
class cMyRemote : public cRemote {
private:
public:
cMyRemote(const char *Name);
virtual bool Initialize(void);
virtual bool Ready(void);
virtual bool Put(uint64_t Code, bool Repeat, bool Release);
};
class cLearningThread : public cThread {
private:
public:
cLearningThread(void);
virtual ~cLearningThread(void);
protected:
virtual void Action(void);
};
#endif
|