summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/nexscope/noatunplugin.h
blob: 8f8abb2a0b160531af1c88bb31452564476240d7 (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
#ifndef NEXPLUG_H
#define NEXPLUG_H

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

class NexPlugin : public QObject, public Plugin
{
Q_OBJECT
	
public:
	NexPlugin();
	virtual ~NexPlugin();

	void init();

private slots:
	void processExited(KProcess *);

private:
	KProcess process;
};


#endif