diff options
author | deva <deva> | 2006-08-25 21:20:07 +0000 |
---|---|---|
committer | deva <deva> | 2006-08-25 21:20:07 +0000 |
commit | 8196872e3b240ef93fc17dd3c05a7d97a8015d88 (patch) | |
tree | e531edeb1c7178a8e58170c84645ce8eb706624e /client/statusbar.h | |
parent | 347b1d8ed3a4f780f3a5c0d57a04eab05ca517a2 (diff) |
Rearranged the network and socket code.origin
Added status messages sent over the network using udp packets.
Diffstat (limited to 'client/statusbar.h')
-rw-r--r-- | client/statusbar.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/client/statusbar.h b/client/statusbar.h index 1b0a2c5..991483c 100644 --- a/client/statusbar.h +++ b/client/statusbar.h @@ -34,6 +34,9 @@ #include <QLabel> #include <QProgressBar> +#include <string> +#include "udp_socket.h" + class StatusBar : public QStatusBar { public: @@ -47,6 +50,10 @@ protected: private: Decoder *decoder; + std::string ip; + int port; + // UDPSocket socket; + // Content QLabel *messagefield; QProgressBar *diskspace; |