server accepts connections
[buliscores] / buliscores-server / clientconn.h
diff --git a/buliscores-server/clientconn.h b/buliscores-server/clientconn.h
new file mode 100644 (file)
index 0000000..3fa9318
--- /dev/null
@@ -0,0 +1,47 @@
+/*
+ * Copyright (C) 2010 David Solbach <d@vidsolbach.de>
+ *
+ * This file is part of BuliScores.
+ *
+ * BuliScores is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * BiliScores is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this program; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ */
+
+#ifndef CLIENTCONN_H
+#define CLIENTCONN_H
+
+#include <QObject>
+#include <QTcpSocket>
+
+class ClientConn : public QObject
+{
+    Q_OBJECT
+private:
+    QTcpSocket* m_Socket;
+
+public:
+    explicit ClientConn(QTcpSocket* socket, QObject *parent = 0);
+
+signals:
+    void disconnected();
+
+private slots:
+    void onSocketDisconnected();
+
+public slots:
+    void triggerUpdate();
+
+};
+
+#endif // CLIENTCONN_H