Completely removed the entire representation tree from the GUI . . .
[aesalon.git] / gui / src / data / NetworkReceiver.h
blobe712f5f2077db2b2dbe6610c4f92b92001a454b5
1 #ifndef AESALON_GUI_NETWORK_RECEIVER_H
2 #define AESALON_GUI_NETWORK_RECEIVER_H
4 #include "DataReceiver.h"
6 class NetworkReceiver : public DataReceiver { Q_OBJECT
7 public:
8 NetworkReceiver(QString host, quint16 port);
9 virtual ~NetworkReceiver();
10 protected:
11 virtual void run();
14 #endif