You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdemultimedia/noatun/modules/infrared/infrared.h

32 lines
391 B

#ifndef _INFRARED_H_
#define _INFRARED_H_
#include <noatun/player.h>
#include <noatun/plugin.h>
class NoatunPreferences;
class Lirc;
class InfraRed : public TQObject, public Plugin
{
TQ_OBJECT
NOATUNPLUGIND
public:
InfraRed();
~InfraRed();
private slots:
void slotCommand(const TQString &, const TQString &, int);
void start();
private:
Lirc *m_lirc;
int volume;
};
#endif