| 1 | #include "OscThread.h" |
| 2 | |
| 3 | OscThread::OscThread(SocketReceiveMultiplexer* multiplexer, QObject* parent) |
| 4 | : QThread(parent), |
| 5 | multiplexer(multiplexer) |
| 6 | { |
| 7 | } |
| 8 | |
| 9 | void OscThread::run() |
| 10 | { |
nothing calls this directly
no outgoing calls
no test coverage detected