You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeaddons/noatun-plugins/nexscope/noatunplugin.h

27 lines
307 B

#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(TDEProcess *);
private:
TDEProcess process;
};
#endif