您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
tdelibs/tdeio/tests/kdcopcheck.h

29 行
433 B

#ifndef _BLA_H_
#define _BLA_H_
#include <kprocess.h>
#include <tqstring.h>
#include <tqobject.h>
class TestService : public TQObject
{
TQ_OBJECT
public:
TestService(const TQString &exec);
int exec();
public slots:
void newApp(const TQCString &appId);
void endApp(const TQCString &appId);
void appExit();
void stop();
protected:
int result;
TQString m_exec;
TDEProcess proc;
};
#endif