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

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

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

	void init();

private slots:
	void processExited(KProcess *);

private:
	KProcess process;
};


#endif