| 31 | class PoolThread : private Startable, public virtual Object { |
| 32 | public: |
| 33 | PoolThread() : Startable("PoolThread" + std::to_string(++_Id)) {} |
| 34 | virtual ~PoolThread() {join(); } |
| 35 | |
| 36 | void join() { stop(); } |
nothing calls this directly
no outgoing calls
no test coverage detected