summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/nexscope/noatunplugin.h
blob: 11a122ea4a97d1501437079b25fd673b90a5a8c9 (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 <tdeprocess.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