diff options
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; |