mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-12-27 15:14:25 +01:00
27 lines
524 B
C++
27 lines
524 B
C++
/*
|
|
* lirc.h: LIRC remote control
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: lirc.h 5.2 2025/03/02 11:03:35 kls Exp $
|
|
*/
|
|
|
|
#ifndef __LIRC_H
|
|
#define __LIRC_H
|
|
|
|
#include "remote.h"
|
|
#include "thread.h"
|
|
|
|
class cLircRemote : public cRemote, protected cThread {
|
|
protected:
|
|
int f;
|
|
cLircRemote(const char *Name);
|
|
public:
|
|
virtual ~cLircRemote() override;
|
|
virtual bool Ready(void) override;
|
|
static void NewLircRemote(const char *Name);
|
|
};
|
|
|
|
#endif //__LIRC_H
|