summaryrefslogtreecommitdiffstats
path: root/process.h
diff options
context:
space:
mode:
Diffstat (limited to 'process.h')
-rw-r--r--process.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/process.h b/process.h
index 3f1bb75..99e5778 100644
--- a/process.h
+++ b/process.h
@@ -5,10 +5,18 @@
class QSocketNotifier;
struct Config {
+ enum Flag {
+ PrintDebugMessages = 0x01
+ };
+ Q_DECLARE_FLAGS(Flags, Flag)
+
+ Config() : flags(0) { }
+
QString base;
QString platform;
QMap<QString,QString> env;
QStringList args;
+ Flags flags;
};
class Process : public QObject