summaryrefslogtreecommitdiffstats
path: root/src/executor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/executor.h')
-rw-r--r--src/executor.h19
1 files changed, 15 insertions, 4 deletions
diff --git a/src/executor.h b/src/executor.h
index b468d2dd..c5b9e784 100644
--- a/src/executor.h
+++ b/src/executor.h
@@ -88,15 +88,26 @@ signals:
/**
* @brief finished signal that is emited when process finishes
*
+ * @param id id of the process
* @param exitCode return code of the process
- * @param output stdout produced by the process, if requested when
- * executing
- * @param errout stderr produced by the process, if requested or if
- * process failed
+ * @param output stdout produced by the process
+ * @param errout stderr produced by the process
*/
void finished(int id, int exitCode, const QString &output,
const QString &errout);
+ /**
+ * @brief starting signal that is emited when process starts
+ */
void starting();
+ /**
+ * @brief error signal that is emited when process finishes with an
+ * error
+ *
+ * @param id id of the process
+ * @param exitCode return code of the process
+ * @param output stdout produced by the process
+ * @param errout stderr produced by the process
+ */
void error(int id, int exitCode, const QString &output,
const QString &errout);
};