| 8 | #include "exception.h" |
| 9 | |
| 10 | VisConnector::~VisConnector() |
| 11 | { |
| 12 | for (auto* c : _clients) { |
| 13 | delete c; |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | void VisConnector::newWebSocketClient(QWebSocket* socket) |
| 18 | { |
nothing calls this directly
no outgoing calls
no test coverage detected