summaryrefslogtreecommitdiff
path: root/client/networksender.h
diff options
context:
space:
mode:
authordeva <deva>2006-08-16 23:47:08 +0000
committerdeva <deva>2006-08-16 23:47:08 +0000
commite421c3f7e6ed8871bb11c6e7b17ce6ea23a77648 (patch)
tree41a274bcfeb6bf4fe6e893e9279b974fc950765b /client/networksender.h
parentad5ef06ff97aac051f6d4287ce30239eda3925bd (diff)
Fjernede miav_config entry.
Replaced the old MiavConfig class with the new Configuration class in all the the appropriate places.
Diffstat (limited to 'client/networksender.h')
-rw-r--r--client/networksender.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/client/networksender.h b/client/networksender.h
index 71ce7e7..589004b 100644
--- a/client/networksender.h
+++ b/client/networksender.h
@@ -37,6 +37,11 @@
#include "status.h"
+#include "socket.h"
+#include "network.h"
+
+#include <string>
+
class NetworkSender : public QThread
{
public:
@@ -52,8 +57,11 @@ public:
void getServerStatus(Status *status);
private:
- QString ip;
- unsigned short port;
+ Socket *socket;
+ Network *network;
+
+ std::string ip;
+ int port;
volatile bool running;