2002-09-29 13:40:45 +02:00
|
|
|
/*
|
|
|
|
* lirc.h: LIRC remote control
|
|
|
|
*
|
|
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
|
|
* how to reach the author.
|
|
|
|
*
|
2022-11-26 13:37:06 +01:00
|
|
|
* $Id: lirc.h 5.1 2022/11/26 13:37:06 kls Exp $
|
2002-09-29 13:40:45 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LIRC_H
|
|
|
|
#define __LIRC_H
|
|
|
|
|
|
|
|
#include "remote.h"
|
|
|
|
#include "thread.h"
|
|
|
|
|
2022-11-26 13:37:06 +01:00
|
|
|
class cLircRemote : public cRemote, protected cThread {
|
|
|
|
protected:
|
2002-09-29 13:40:45 +02:00
|
|
|
int f;
|
2022-11-26 13:37:06 +01:00
|
|
|
cLircRemote(const char *Name);
|
2002-09-29 13:40:45 +02:00
|
|
|
public:
|
|
|
|
virtual ~cLircRemote();
|
2003-04-12 14:37:57 +02:00
|
|
|
virtual bool Ready(void);
|
2022-11-26 13:37:06 +01:00
|
|
|
static void NewLircRemote(const char *Name);
|
2002-09-29 13:40:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //__LIRC_H
|