QTfrontend/netserver.h
changeset 2948 3f21a9dc93d0
parent 1375 c95c6887b289
child 4976 088d40d8aba2
--- a/QTfrontend/netserver.h	Sat Mar 06 10:54:24 2010 +0000
+++ b/QTfrontend/netserver.h	Sat Mar 06 10:59:20 2010 +0000
@@ -24,18 +24,18 @@
 
 class HWNetServer : public QObject
 {
-	Q_OBJECT
+    Q_OBJECT
 
 public:
-	~HWNetServer();
-	bool StartServer(quint16 port);
-	void StopServer();
-	QString getRunningHostName() const;
-	quint16 getRunningPort() const;
+    ~HWNetServer();
+    bool StartServer(quint16 port);
+    void StopServer();
+    QString getRunningHostName() const;
+    quint16 getRunningPort() const;
 
 private:
-	quint16 ds_port;
-	QProcess process;
+    quint16 ds_port;
+    QProcess process;
 };
 
 #endif // _NETSERVER_INCLUDED