diff options
author | Orochimarufan <orochimarufan.x3@gmail.com> | 2013-02-22 18:18:23 +0100 |
---|---|---|
committer | Orochimarufan <orochimarufan.x3@gmail.com> | 2013-02-22 18:18:23 +0100 |
commit | 3a173648e789f30b2843241ee38e694d16e10358 (patch) | |
tree | 9941f7025d8f3f5ff19c515bde8ae3ebca98a4a8 /data/minecraftprocess.h | |
parent | 10c707363b3f19a8862b5ebd2858bcaad1304a13 (diff) | |
download | MultiMC-3a173648e789f30b2843241ee38e694d16e10358.tar MultiMC-3a173648e789f30b2843241ee38e694d16e10358.tar.gz MultiMC-3a173648e789f30b2843241ee38e694d16e10358.tar.lz MultiMC-3a173648e789f30b2843241ee38e694d16e10358.tar.xz MultiMC-3a173648e789f30b2843241ee38e694d16e10358.zip |
Implement ConsoleWindow
Diffstat (limited to 'data/minecraftprocess.h')
-rw-r--r-- | data/minecraftprocess.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/data/minecraftprocess.h b/data/minecraftprocess.h index 99a3bed6..bede9486 100644 --- a/data/minecraftprocess.h +++ b/data/minecraftprocess.h @@ -19,7 +19,7 @@ #include <QProcess> -class ConsoleWindow; +#include "gui/consolewindow.h" #include "instance.h" @@ -86,9 +86,13 @@ protected: QStringList m_arguments; void genArgs(); + void log(QString text); protected slots: void finish(int, QProcess::ExitStatus status); + void on_stdErr(); + void on_stdOut(); + }; #endif // MINECRAFTPROCESS_H |