diff -r c2ce9944148c -r 0bba81dde1bc bugagent.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bugagent.h Fri Feb 19 13:47:03 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 +