Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/hakchi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'hakchi-gui/src/wincon.h')
-rw-r--r--hakchi-gui/src/wincon.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/hakchi-gui/src/wincon.h b/hakchi-gui/src/wincon.h
new file mode 100644
index 0000000..a51a857
--- /dev/null
+++ b/hakchi-gui/src/wincon.h
@@ -0,0 +1,20 @@
+#ifndef WINCON_H
+#define WINCON_H
+
+#include <QObject>
+
+class CWinCon:public QObject
+{
+ Q_OBJECT
+public:
+ explicit CWinCon(QObject*parent=0);
+ ~CWinCon();
+signals:
+ void msg(const QString&msg);
+public slots:
+ void readOutput();
+private:
+ FILE*con;
+};
+
+#endif // WINCON_H