diff -r 000000000000 -r 988f1908a7c4 bugagent.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bugagent.h Fri Jul 23 16:43:49 2010 +0000 @@ -0,0 +1,28 @@ +#ifndef BUGAGENT_H +#define BUGAGENT_H + +#include + +#include "process.h" + +class BranchItem; + +class BugAgent:public QObject +{ + Q_OBJECT +public: + BugAgent (BranchItem *bi,const QString &bug); + ~BugAgent(); + +public slots: + virtual void processFinished(int exitCode, QProcess::ExitStatus exitStatus); + +private: + uint branchID; + uint modelID; + QString bugID; + QString script; + Process *p; +}; +#endif +