summaryrefslogtreecommitdiffstats
path: root/noatun/modules/infrared/infrared.h
blob: df3883d8dc5533137a4cbf283e6ac11a7961138e (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

#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