diff options
| author | 2016-04-16 00:01:16 +0200 | |
|---|---|---|
| committer | 2016-04-16 00:01:16 +0200 | |
| commit | e25c9d650eb7c7633fd1a768bff9cde013c7b057 (patch) | |
| tree | 4fd51b0372fc35dbd12611231109dc3b21c3364f /irc/mainwindow.h | |
| parent | e55d89b50abd103dcc860faba2c7719064b5aa46 (diff) | |
| download | OneRoll-e25c9d650eb7c7633fd1a768bff9cde013c7b057.tar.gz OneRoll-e25c9d650eb7c7633fd1a768bff9cde013c7b057.zip | |
Rename file
Diffstat (limited to 'irc/mainwindow.h')
| -rw-r--r-- | irc/mainwindow.h | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/irc/mainwindow.h b/irc/mainwindow.h deleted file mode 100644 index d7139d6..0000000 --- a/irc/mainwindow.h +++ /dev/null @@ -1,36 +0,0 @@ -#ifndef MAINWINDOW_H -#define MAINWINDOW_H - -#include <QMainWindow> -#include "diceparser.h" - -#include <QTcpSocket> - -namespace Ui { -class MainWindow; -} - -class MainWindow : public QMainWindow -{ - Q_OBJECT - -public: - explicit MainWindow(QWidget *parent = 0); - virtual ~MainWindow(); - -public slots: - void errorOccurs(QAbstractSocket::SocketError); -private: - Ui::MainWindow *ui; - QTcpSocket * m_socket; - DiceParser* m_parser; - -private slots: - void readData(); - void connectToServer(); - void disconnectFromServer(); - void authentificationProcess(); - void joinChannel(); -}; - -#endif // MAINWINDOW_H |