QTfrontend/netwwwserver.h
changeset 635 0fb6d55ecd66
parent 633 9050a949db21
child 659 5eafb20566f1
--- a/QTfrontend/netwwwserver.h	Sun Dec 09 11:43:56 2007 +0000
+++ b/QTfrontend/netwwwserver.h	Sun Dec 09 13:21:47 2007 +0000
@@ -22,6 +22,9 @@
 #include <QObject>
 #include "netregister.h"
 
+class QHttp;
+class QTimer;
+
 class HWNetWwwServer : public HWNetRegisterServer
 {
 	Q_OBJECT
@@ -29,10 +32,17 @@
 public:
 	HWNetWwwServer(QObject *parent, const QString & descr, quint16 port);
 
+public slots:
+	void unregister();
+
 private slots:
-	void onClientRead();
+	void onClientRead(int id, bool error);
+	void updateInList();
 
 private:
+	QHttp * http;
+	QTimer * timer;
+	QString servid, servkey;
 };
 
 #endif // _NET_WWWSERVER_INCLUDED