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

#ifndef _INFRARED_H_
#define _INFRARED_H_

#include <noatun/player.h>
#include <noatun/plugin.h>

class NoatunPreferences;
class Lirc;

class InfraRed : public QObject, public Plugin
{
Q_OBJECT
NOATUNPLUGIND
public:
	InfraRed();
	~InfraRed();

private slots:
	void slotCommand(const QString &, const QString &, int);

	void start();

private:
	Lirc *m_lirc;
	int volume;
};

#endif