blob: aed60463531b4c316c2f38985700f760b8da3cc3 (
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
|
/*
* general_remote.h:
*
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
* $Id: general_remote.h,v 1.1 2006-06-03 10:04:27 phintuka Exp $
*
*/
#ifndef __GENERAL_REMOTE_H
#define __GENERAL_REMOTE_H
//----------------------------- cGeneralRemote --------------------------------
#include <vdr/remote.h>
class cGeneralRemote : public cRemote {
public:
cGeneralRemote(const char *Name) : cRemote(Name) {};
bool Put(const char *Code, bool Repeat=false, bool Release=false)
{ return cRemote::Put(Code, Repeat, Release); };
};
#endif
|