| 188 | } |
| 189 | |
| 190 | void |
| 191 | RMSViewer::onNewConnection(void) |
| 192 | { |
| 193 | QTcpSocket *socket; |
| 194 | |
| 195 | while ((socket = this->server.nextPendingConnection()) != nullptr) |
| 196 | this->openNewView(socket); |
| 197 | } |
| 198 | |
| 199 | void |
| 200 | RMSViewer::onToggleListening(void) |
nothing calls this directly
no test coverage detected