summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/nexscope/noatunplugin.h
blob: d1b0ec8e929adcf69f9c58f04650eb613b29a62d (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 TQObject, public Plugin
{
Q_OBJECT
	
public:
	NexPlugin();
	virtual ~NexPlugin();

	void init();

private slots:
	void processExited(KProcess *);

private:
	KProcess process;
};


#endif