I cannot because the Viewer and the Driver are the different Client-objects:

Qt Code:
  1. void Server::incomingConnection(int socketDescriptor) {
  2. Client *client = new Client(this);
  3. client->setSocket(socketDescriptor);
  4. }
To copy to clipboard, switch view to plain text mode 

How to get the data from the Client-Driver for the Client-Viewer?