diff options
Diffstat (limited to '')
-rw-r--r-- | client/mainwindow.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/client/mainwindow.h b/client/mainwindow.h new file mode 100644 index 0000000..9cd58cf --- /dev/null +++ b/client/mainwindow.h @@ -0,0 +1,29 @@ +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include <QMainWindow> +class Client; + +namespace Ui { +class MainWindow; +} + +class MainWindow : public QMainWindow +{ + Q_OBJECT + +public: + explicit MainWindow(QWidget *parent = 0); + ~MainWindow(); + +private: + Ui::MainWindow *ui; + + Client *m_client; + +private slots: + void handleLineEntered(); + void handleConsoleOutput(const QString &str); +}; + +#endif // MAINWINDOW_H |