aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/irc/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'irc/mainwindow.h')
-rw-r--r--irc/mainwindow.h36
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