========================================================================= -- Constructors and destructor ----------------------------------------- =========================================================================
| 38 | // -- Constructors and destructor ----------------------------------------- |
| 39 | // ========================================================================= |
| 40 | Thread::Thread( |
| 41 | const std::string &name, |
| 42 | FunctionThreadExecute threadExecuteFunction) : |
| 43 | _state(State::Unknown), |
| 44 | _thread(0u), |
| 45 | _name(name), |
| 46 | _threadExecuteFunction(threadExecuteFunction) {} |
| 47 | |
| 48 | Thread::~Thread() {} |
| 49 |
nothing calls this directly
no outgoing calls
no test coverage detected