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

26 lines
299 B

#ifndef NEXPLUG_H
#define NEXPLUG_H
#include <kprocess.h>
#include <noatun/plugin.h>
class NexPlugin : public QObject, public Plugin
{
Q_OBJECT
public:
NexPlugin();
virtual ~NexPlugin();
void init();
private slots:
void processExited(KProcess *);
private:
KProcess process;
};
#endif