summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/nexscope/noatunplugin.h
blob: 33a6e15e19fdfb5df7ca7c593660a75ef70c4f7a (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
{
TQ_OBJECT
  
	
public:
	NexPlugin();
	virtual ~NexPlugin();

	void init();

private slots:
	void processExited(TDEProcess *);

private:
	TDEProcess process;
};


#endif